//function subNav(){
//    $$('#navigation2 a').each(function(el){
//        if(!el.hasClass('first')){
//            el.addEvent('click',function(e){
//                ProductAccordion.display(indexKey[$(e.target).get('href').replace("#", "")]);
//            })
//        }
//    });
//}

function imageCheck(el){
    var filearray = Array('.jpg','.jpeg','.gif','.png');
    
    //get  . and the last 3 chars
    ext = el.value.substr(el.value.length-4).toLowerCase();
    if(ext.substr(0,1) != '.'){
        //check first char is . if get . and 4 chars 
        ext =  el.value.substr(el.value.length-5).toLowerCase();  
    }
    // check ext is in allowed arrray above
    if(!filearray.contains(ext)){
        el.errors.push("Invalid file type. Please use one the following '.jpg','.jpeg','.gif','.png'");
        return false;
    }else{
        return true; 
    }
    
}//func

function checkluhn(el){
    if(el.value.length < 1){
        return false;
    }else{
        var number = el.value;
        var i, sum, weight;
        sum=0;
        for(i = 0; i < number.length - 1; i++){
            weight = number.substr(number.length - (i + 2), 1) * (2 - (i % 2));
            sum += (weight < 10) ? weight : (weight - 9);
        }
        if(parseInt(number.substr(number.length-1)) == ((10 - sum % 10) % 10)) {
            return true;
        }else{
            el.errors.push("Invalid card number.");
            return false;
        }
    }
}

function rangeJump(){
    $('rangeSelect').addEvent('change',function(e){
        choice = e.target.getSelected();
        //console.log(choice[0].value);
        if(choice[0].value != ""){
            window.location = choice[0].value;
        }
        //window.location = choice[0].value;
    })
}

function groupsubs(){
    $$('.side_nav .parent').each(function(el){
        el.store('DIFstate', false);
        el.addEvent('click',function(e){
            //e.stop();

            ele = e.target;
            sub = ele.getParent('a').getNext('ul');
            a = ele.getParent('a');
            
            if(!$chk(a.get('href'))){
               e.stop(); 
            }
            //console.log(sub);

            var currenth = sub.getStyle('height');
            sub.setStyle('height','auto');
            var size = sub.getSize();
            sub.setStyle('height',currenth);
            var DIheight = size.y;

            var showEff = new Fx.Morph(sub, {duration: 'normal', link:'ignore',
                onStart:function(){
                    //DIFstate = true;
                    ele.store('DIFstate', true);
                }
            });
            var hideEff = new Fx.Morph(sub, {duration: 'normal', link:'ignore',
                onComplete:function(){
                    //DIFstate = false;
                    ele.store('DIFstate', false);
                }
            });

            //console.log(ele.retrieve('DIFstate'));
            if(!ele.retrieve('DIFstate')){
                showEff.start({
                    'height': [0, DIheight]
                });
            }else{
                hideEff.start({
                    'height': [DIheight, 0]
                });
            }

        });
    })


}

window.addEvent('domready', function() {
    //rangeJump();
    groupsubs();
});

function hsbilling(){
    section = $('baddress');
    var currenth = section.getStyle('height');
    section.setStyle('height','auto');
    var size = section.getSize();
    section.setStyle('height',currenth);
    //content.store('height', size.y);
    var DIheight = size.y;

    var showEff = new Fx.Morph(section, {duration: 'normal', link:'ignore'});


    $('UseAsBilling').addEvent('click',function(e){
        el = this;
        state = el.get('checked');


        if(state){
            showEff.start({
                'height': [DIheight, 0]
            });
            formVal.dispose($('StreetB'));
            formVal.dispose($('TownB'));
            formVal.dispose($("PostcodeB"));
        }else{
            showEff.start({
                'height': [0, DIheight]
            });
            formVal.register($('StreetB'));
            formVal.register($('TownB'));
            formVal.register($("PostcodeB"));
        }
    })
    
    $('Country').addEvent('change',function(e){
        el = this;
        bselected = el.getSelected();
        val = bselected.get('value')[0];
        //console.log(val);
        switch(val){
            case 'UK':
                formVal.register($("Postcode"));
                break;
            case 'IE':
                formVal.dispose($("Postcode"));

                break;
        }
    })

    $('CountryB').addEvent('change',function(e){
        el = this;
        bselected = el.getSelected();
        val = bselected.get('value')[0];
        switch(val){
            case 'UK':
                formVal.register($("PostcodeB"));
                break;
            case 'IE':
                formVal.dispose($("PostcodeB"));

                break;
        }
    });
    $('Country').fireEvent('change');
    $('CountryB').fireEvent('change');
    $('UseAsBilling').fireEvent('click');
            
}

function centerImage(holder,image){
    $$(holder).each(function(el){
        holdersize = el.getSize();
        holderpad = el.getStyle('padding').toInt();
        imageel = el.getElement(image);
        imagesize = imageel.getSize();

        //console.log(imagesize);    
        //console.log(holdersize);   
        if(imagesize.y > 0){
            marginh = ((holdersize.y-(holderpad*2)) - imagesize.y)/2
            marginw = ((holdersize.x-(holderpad*2)) - imagesize.x)/2

            imageel.setStyles({
                marginTop: marginh,
                marginLeft: marginw
            });
        }
    })
}

function delPrice(){
    $$('.text input').each(function(el){
        el.addEvent('click',function(){
            if(this.get('checked')){
                delCost = this.get('rel');
                updatedtotal(delCost);
            }
        });
    });
    $$('.text input')[0].fireEvent('click');
    
}
var totalBefore;
function updatedtotal(delCost){   
    delCost= delCost.toFloat();
    if(totalBefore == null){
        totalBefore = $('carttotal').get('value').toFloat();
    }

    newtotal = delCost.toFloat() + totalBefore;
    $('totalcost').set('html',newtotal.toFixed(2));
    $('totaldel').set('html',delCost.toFixed(2));
}
function loadMap(){
    var myScript = Asset.javascript('/assets/js/raphael-min.js', {
        onLoad :function(){
                alert('myScript.js is loaded!'); 
                createMap()
            }
    });
}

window.repGroups;
function createMap(counties){
    
    window.repGroups = counties;
    var R = Raphael("locationMap", 276, 330);
    attr = {
        fill: "#fff",
        stroke: "#ae1f23",
        "stroke-width": 0.5
    };
    hover = {
        fill: "#ae1f23",
        stroke: "#fff",
        "stroke-width": 0.1
    };

    a = R.path("M134.73,76.798c0.523,0.09,1.193,0.219,1.705,0.003c0.451-0.19,0.435-0.893,1.079-0.6c0.501,0.281,1,0.563,1.502,0.845c0.355,0.2,1.145-0.021,1.551-0.048c0.508-0.034,1.005,0.011,1.509-0.101c0.522-0.117,0.63-0.396,1.019-0.69c0.66-0.502,2.526,0.037,2.772-0.951c0.31-1.456,0.888-3.326,2.435-3.928c1.115-0.372,1.945,0.581,2.92,0.899c0.637,0.207,1.318,0.195,1.98,0.236c1.134,0.069,2.27,0.138,3.402,0.207c0.529-0.353,0.418-0.719,0.43-1.261c0.013-0.698,0.636-1.29,1.12-1.713c0.725-0.633,1.647-0.828,2.528-1.151l0.196-0.547c0.231-0.74,1.427-0.824,2.043-0.873c0.951-0.076,2.099-0.579,1.188-1.712c-0.633-0.694-1.309,0.074-2.053,0.133c-0.897,0.071-1.682-0.448-2.272-1.077c-0.853-0.907-1.657-0.443-2.687-0.149c-0.98-0.071-0.558-1.326-1.054-1.863c-0.256-0.277-0.728-0.267-1.06-0.404c-0.387-0.16-0.74-0.41-0.969-0.766c-0.404-0.721-0.037-1.143,0.19-1.813c0.172-0.503-0.553-1.104,0.013-1.417c0.574-0.318,1.269-0.28,1.805-0.704c0.512-0.402,0.603-1.066,1.185-1.449c0.421-0.278,1.155-0.678,1.679-0.463c0.547,0.226,0.516,1.082,1.082,1.365c0.563,0.282,1.03,0.828,1.504,1.25c0.813,0.946,1.619-0.702,2.293-1.038c0.518-0.258,1.178-0.39,1.726-0.578c0.386-0.132,0.585-0.234,0.905-0.483c0.188-0.146,0.922-0.91,1.152-0.882c1.858,0.22,3.735,0.59,5.606,0.496c-0.181-1.15-0.685-2.649-0.236-3.782c0.529-1.337,2.41-2.095,3.56-2.802c0.762-0.468,0.8-1.35,1.104-2.101c0.236-0.582,0.625-1.095,1.043-1.557c0.549-0.71,0.199-1.385,0.117-2.171c-0.064-0.622,0.204-1.067,0.309-1.657c0.107-0.614-0.217-1.431,0.168-1.966c0.615-0.862,1.529-0.734,2.392-0.47c-0.044-0.579-0.089-1.158-0.134-1.737c-0.075-0.986,0.125-1.774,0.289-2.715c0.088-0.519,0.121-1.09,0.289-1.591c0.26-0.78,1.021-1.392,1.569-1.986c0.333-0.359,0.938-1.243,1.46-1.269c0.617-0.031,1.133-0.022,1.742,0.065c0.955,0.136,1.318-0.176,2.037-0.771c0.439-0.365,0.854-0.359,1.129-0.864c0.313-0.577,0.734-1.094,1.17-1.582c0.896-1.003,1.672-2.102,2.479-3.179c1.011-1.347,1.955-2.139,3.535-2.812c2.278-0.968,4.67-1.809,6.854-2.976c0.836-0.446,3.075-1.409,3.131-2.597c0.08-0.642-0.998-1.351-1.442-1.69c-0.524-0.483-1.058-0.416-1.705-0.514c-0.646-0.098-1.19-0.572-1.625-1.028c-0.371-0.433-0.951-1.032-1.59-0.895c-0.556,0.148-1.066-0.266-1.42-0.642c-0.474-0.504-0.845-1.055-1.568-1.204c-0.445-0.092-0.937,0.018-1.387,0.056c-0.356-0.073-0.181-1.121-0.275-1.407c-0.25-0.751-0.67-1.126-0.371-1.975c0.297-1.178-2.428-2.174-3.133-2.485c-0.807-0.315-1.646-0.562-2.467-0.841c-0.703-0.24-1.586-0.38-2.162-0.865c-0.525-0.446-0.86-0.813-1.586-0.965c-0.379-0.08-1.98-0.332-1.439,0.534c0.216,0.377,0.561,0.667,0.924,0.893c0.367,0.228,1.115,0.4,1.115,0.947c-0.314,1.336-0.217,2.302,0.744,3.39c0.408,0.465,3.259,2.501,2.388,3.372c-0.521,0.148-0.918,0.276-1.412-0.064c-0.475-0.327-0.946-0.653-1.422-0.979c0.05,0.028-0.413-0.211-0.335-0.273c0.238-0.191,1.625,0.583,1.479-0.224c-0.09-0.802-1.396-1.817-2.139-1.989c-1.156-0.217-0.855,1.493-1.729,1.958c-0.479,0.254-1.065,0.191-1.586,0.283c-0.394,0.069-0.586,0.384-0.881,0.459c-0.395,0.101-0.877-0.577-1.072-0.811c-0.137-0.161-0.84-0.963-0.697-0.249c0.313,1.709-1.458-0.148-2.188,0.397c-0.783,0.548,0.299,1.708-0.226,2.478c-0.288,0.423-0.674,0.784-0.521,1.351c0.213,0.536-0.291,0.922-0.623,1.249c-0.65,0.642-1.246,1.841-0.881,2.766c0.144,0.363,0.424,0.497,0.746,0.668c0.379,0.201,0.648,0.59,0.873,0.942c0.672,1.058,1.219,2.239,1.829,3.336c0.316,0.568,0.769,1.068,0.573,1.77c-0.205,0.738-1.326,1.534-1.227,2.344c0.084,1.004,2.113,3.466,0.945,4.375c-0.836,0.082-1.789,0.05-2.603,0.259c-0.796,0.205-0.445,1.027-1.026,1.415c-0.466,0.311-1.113,0.305-1.621,0.657c-0.813,0.563-1.564,1.269-2.271,1.957c-0.55,0.535-0.974,1.363-1.575,1.815c-0.178,0.132-0.355,0.016-0.559,0.041c-0.438,0.055-0.858,0.297-1.231,0.518c-0.424,0.251-1.224,0.634-0.646-0.149c0.633-0.772,1.266-1.543,1.896-2.315c1.162-1.417,3.206-1.843,3.968-3.601c0.332-0.862,0.149-1.276-0.546-1.243c-0.52,0-1.038,0-1.558,0c-0.255,0-0.286-0.031-0.521-0.097c-0.463-0.13-0.821,0.359-1.151,0.594c0.213-0.399,0.406-0.894,0.718-1.226c0.308-0.328,0.552-0.241,0.942-0.236c0.381,0.004,0.647-0.386,0.815-0.675c0.438-0.749,0.869-1.194,1.7-1.524c0.887-0.351,1.691-0.542,2.109-1.499c0.947-2.169-0.742-3.597-1.742-5.289c-0.325-0.55-0.118-1.32-0.475-1.773c-0.521-0.662-1.555-0.56-1.934-1.45c-0.311-0.615,0.234-1.075,0.544-1.538c0.353-0.526,0.44-1.172,0.394-1.792c-0.078-1.014-0.313-2.823-1.037-3.629c-1.117-1.118-2.808,1.253-3.432,1.939c-0.486-0.042-0.975-0.086-1.461-0.128c-0.271-0.024-1.516-0.781-1.57-0.219c-0.09,0.411-0.181,0.821-0.271,1.231c-0.162,0.739-0.79,0.705-1.245,1.192c-0.428,0.459-0.154,1.653,0.066,2.161c0.271,0.621,0.826,0.611,1.349,0.287l0.351-0.199c0.116,0.687,0.055,1.281,0.696,1.74l0.944-0.05c-0.049-0.767-0.598-3.702,0.248-4.126c0.414-0.293,0.578,1.227,0.584,1.384c0.031,0.755-0.619,1.086-0.4,1.859c0.262,0.922,0.898,1.759,1.375,2.579c0.926,1.592-0.661,3.883-1.807,4.965c-0.364,0.133-0.463-0.017-0.297-0.448c0.322-1.084,1.522-3.771,0.34-4.667c-0.619-0.468-1.238-0.936-1.857-1.404c-0.408-0.31-0.885-0.532-1.404-0.558c-0.799-0.04-1.293,0.225-1.504-0.778c-0.312-1.144,0.375-2.143,0.863-3.121c0.048-0.096,1.141-2.321,0.527-2.199c-0.897-0.149-1.271,1.247-1.44,1.84c-0.278,0.021-0.56,0.043-0.838,0.064c-0.386,0.03-0.771-0.109-1.142-0.048c-1.209,0.198-1.334,2.189-0.606,2.917c0.364,0.332,0.828,0.497,1.392,0.497c0.754-0.094,0.082,2.342-0.188,2.66c-0.396,0.469-1.021,0.621-1.318,1.206c-0.14,0.273-0.277,0.54-0.434,0.808c-0.221-0.607-1.031-0.446-1.542-0.497c0.514-0.64,1.339-1.21,1.94-1.79c0.238-0.883-1.927,0.012-1.443-0.796c0.015-0.178,0.029-0.356,0.045-0.534c0.014-0.162-0.393-0.539-0.393-0.857c-0.052-0.656-0.606-0.249-0.996-0.249c-0.475,0-0.946,0-1.42,0c-0.76,0-1.604,0.108-2.356-0.05l2.933-1.79c0.338-0.452-0.729-0.69-0.964-0.887c-0.358-0.301-0.716-0.602-1.075-0.902c-0.72-0.93-1.787,0.791-1.908,1.365c-0.176,0.822,0.105,2.843-1.174,2.91c-1.248,0.087-2.603,0.341-3.601,1.149c-0.876,0.708-1.063,2.235-2.166,2.629c-0.923,0.246-0.828-1.32-1.455-1.747c-0.549-0.374-1.253-0.517-1.882-0.703c-0.939-0.279-3.506-1.528-3.972-0.136c-0.155,0.653-0.313,1.181-0.602,1.785c-0.214,0.448-0.54,0.827-0.599,1.336c-0.046,0.404,0.401,1.678-0.129,1.874c-0.614,0.229-0.602,0.533-0.459,1.22c0.115,0.842-0.229,0.819-0.883,0.685c-1.108-0.228-0.114,2.383-1.254,2.547c-0.771,0.165-1.272-0.665-1.839-1.044c-0.475,0.79-0.248,1.493-0.423,2.337c-0.077,0.37-0.119,0.757-0.363,1.066c-0.257,0.326-1.271-0.476-1.799-0.37c-0.696,0.166-0.861,0.613-0.497,1.343c0.42,0.685,0.841,1.37,1.261,2.054c0.592,0.965,1.83,1.164,2.467,2.072c-1.191,0.397-2.335,0.564-3.58,0.746c-0.099-0.066-0.099-0.281,0-0.646c0.1-0.299-0.198-0.332-0.895-0.1c-1.258,0.503,0.05,0.664,0.05,1.392l-0.198,0.597c-0.496,1.269,2.24,2.521,3.082,3.082c0.44,0.147,0.403-1.111,0.597-1.28c0.137-0.12,0.54,0.335,0.746,0.335c0.315,0,0.583-0.534,0.844-0.447c0.044,0.477,0.064,1.088,0.522,1.366c0.398,0.242,1.469,0.086,1.02,0.871c-1.115,0.083-2.14-0.122-3.231,0.05c-1.092-0.122-0.753,1.55-0.088,1.878c0.391,0.192,0.604-0.003,0.83,0.49c0.27,0.59,0.382,1.094,1.048,1.36c-0.395,0.013-1.313,0.12-1.6-0.265c-0.356-0.478-0.52-0.568-1.096-0.73c-0.403-0.113-0.819-0.278-1.231-0.347c-0.796-0.265-1.167,0.677-1.926,0.547c-0.611-0.104-0.956-0.45-1.582-0.431c-0.46,0.014-0.936-0.111-1.215,0.257c-0.701,0.927-1.774,0.527-2.734,0.373c-0.563,0-0.646,0.132-0.249,0.397c0.657,0.249,1.457,0.391,1.89,0.995c-0.084,0.764,1.176,0.533,1.252,1.205c0.098,0.849,0.732,0.618,1.442,0.959c0.287,0.138,0.208,0.223,0.203,0.477c-0.004,0.302,0.288,0.559,0.498,0.729c0.37,0.3,1.569,0.865,1.344,1.526c-0.412,1.208-2.796-1.568-2.552-1.813c-0.642-0.042-1.283-0.085-1.924-0.128c-0.26-0.018-1.954-0.272-1.556,0.128c1.126,0.593,3.02,1.177,3.779,2.188c0.368,0.552-1.53-0.156-1.641-0.199c-0.489-0.202-0.967-0.435-1.45-0.652c-1.561-0.701-2.842-1.334-4.628-1.122c-1.217,0.146-2.509,0.502-3.523,1.214c-0.5,0.352-0.881,0.827-1.474,1.04c-0.49,0.177-1.006,0.044-1.337,0.53c-0.587,0.861-0.218,2.029-1.434,2.377c-0.572,0.163-1.144,0.327-1.715,0.49c-0.477,0.319,0.017,0.811,0.201,1.126c0.259,0.446,0.14,1.085,0.048,1.559c-0.236,1.185,0.945,1.141,1.741,1.58c0.579,0.319,1.114,0.709,1.696,1.023c0.318,0.173,0.679,0.2,0.983,0.343c0.337,0.158,0.271,0.891,0.345,1.178c0.151,0.589,0.685,0.825,1.251,0.848c0.864,0,1.02-0.474,1.59-0.945c0.351,0.438,0.722,0.805,1.128,1.193c0.169,0.161,0.479,0.366,0.557,0.586c0.156,0.447,0.142,0.801,0.751,0.707l4.523-2.237c1.419-0.472-0.929,3.186,0.995,2.834c1.72-0.413,0.723-2.499,2.087-3.182c1.005-0.603-0.655,2.692-0.198,2.635c0.593-0.656,1.336-1.975,2.287-1.144c0.497,0.464,0.513,1.011,0.049,1.641c-0.774,0.986-2.127,0.771-3.023,1.522c-0.495,0.415-0.67,1.233-0.903,1.808c0,0.287,1.08-0.72,1.202-0.802c0.717-0.484,1.574-0.657,2.325-1.067c1.442-0.787,1.825-2.487,3.358-3.163c0.407-0.179,2.307-1.299,2.635-0.988c1.108,1.049-2.175,3.334-1.268,3.684c1.159,0.533,3.466-1.28,4.5-1.864c0.568-0.322,1.136-0.643,1.704-0.963c1.772-1.002-0.001,0.985,0.608,1.087c0.529-0.345,1.828-1.594,2.436-1.442c0.448,0.192-0.695,1.196-0.709,1.442c-0.018,0.333,0.338,0.488,0.428,0.78c0.1,0.319-0.019,0.669-0.153,0.958c-1.166,2.474-1.179-1.207-1.9-0.843c-0.411,0.068-0.185,1.169-0.182,1.403c0.007,0.71-0.392,1.289-0.964,1.679c-0.536,0.425-1.094,0.829-1.639,1.243c-0.33,0.441-0.001,0.838-0.037,1.297c-0.029,0.366-0.539,0.661-0.803,0.833c-0.592,0.384-2.341,0.931-2.341,1.847c-0.154,0.988,2.371,1.581,3.082,1.839c0.353,0.178-0.5,0.166-0.625,0.145c-0.523-0.087-1.046-0.174-1.569-0.261c-0.517-0.086-1.036-0.235-1.373,0.297c-0.489,0.768-0.938,1.28-1.802,1.66C132.742,76.151,133.472,76.6,134.73,76.798C135.891,76.998,133.472,76.6,134.73,76.798z");
    b = R.path("M205.542,94.01c0.307-0.507,0.539-1.101,0.736-1.467c0.01-0.018,0.02-0.035,0.029-0.053c0.014-0.027,0.029-0.061,0.043-0.085c0.217-0.41,0.5-0.788,0.713-1.201c0.016-0.032,0.031-0.064,0.047-0.097c0.053-0.106,0.096-0.218,0.133-0.332c0.016-0.045,0.033-0.091,0.045-0.137c0.008-0.027,0.014-0.053,0.02-0.081c0.096-0.43,0.086-0.861,0.137-1.296c0.033-0.32,0.102-0.644,0.289-0.983c0.246-0.47,0.57-0.709,0.965-0.715c0.133-0.002,0.273,0.021,0.424,0.072c0.494,0.216,0.986,0.432,1.482,0.648c0.48,0.21,0.545,0.66,1.045,0.731c0.018,0.003,0.045,0,0.064,0.002c0.057,0.004,0.109,0.009,0.176,0.004c0.391-0.098,0.609-0.449,0.754-0.861c0.125-0.37,0.184-0.784,0.264-1.091c0.006-0.017,0.01-0.031,0.014-0.047c0.012-0.047,0.021-0.099,0.033-0.142c0.207-0.817,0.502-1.305,1.102-1.904c0.529-0.531,1.135-1.101,1.424-1.781c0.162-0.427,0.291-0.878,0.484-1.286c0.008-0.016,0.018-0.031,0.025-0.048c0.035-0.072,0.072-0.145,0.113-0.214c0.17-0.294,0.395-0.553,0.736-0.743l1.436-0.049l0,0h0.002c0.102,0.072,0.195,0.101,0.281,0.096c0.609-0.039,0.891-1.749,1.053-2.075c-0.271-0.033-0.637-0.715-0.859-0.957c-0.48-0.523-0.684-0.739-0.377-1.518c0.395-1.233,1.344-1.257,2.197-1.991c0.314-0.271,0.227-0.599,0.43-0.901c0.246-0.36,0.693-0.48,1.055-0.679c1.586-0.87,2.385-3.496,1.711-5.14c-0.141-0.461-0.275-0.923-0.398-1.385c-0.547,0.427-1.299,1.113-1.982,1.189c-0.398,0-0.709-0.214-0.941-0.643c-0.088-0.175-0.195-0.179-0.307-0.111c-0.01,0.007-0.02,0.013-0.029,0.021c-0.012,0.008-0.023,0.019-0.035,0.028c-0.117,0.111-0.229,0.287-0.307,0.365c-0.027,0.029-0.063,0.049-0.096,0.075c-0.021,0.023-0.045,0.047-0.064,0.062c-0.012,0.009-0.027,0.014-0.041,0.022c-0.078,0.052-0.158,0.096-0.244,0.134c-0.002,0.001-0.006,0.003-0.008,0.004c-0.207,0.093-0.432,0.153-0.652,0.19c-0.98,0.123-0.746,1.101-1.412,1.503c-0.088,0.055-0.193,0.101-0.318,0.13c-0.422,0.132-0.584,0.03-0.664-0.164c-0.064-0.149-0.084-0.353-0.135-0.546c-0.057-0.223-0.16-0.434-0.439-0.527c-0.299-0.132-0.496-0.065-0.594,0.199c-0.076,0.534-0.379,0.905-0.891,1.088c-0.117,0.033-0.223,0.052-0.32,0.059c-0.289,0.019-0.498-0.083-0.619-0.306c-0.232-0.396-0.314-0.743-0.248-1.04c0.014-0.075,0.041-0.135,0.078-0.18c0.264-0.32,1.051,0.025,1.406,0.08l0.146-0.544c-0.053-0.942-1.248-0.525-1.93-0.494c-0.428-0.342-0.492-1.031-0.789-1.488c-0.361-0.555-0.723-1.109-1.084-1.664c-0.721-1.109-1.445-2.22-2.168-3.33c-0.23-0.354-0.496-0.583-0.787-0.727c-0.025-0.012-0.051-0.017-0.076-0.027c-0.115-0.052-0.232-0.096-0.355-0.125c-0.74-0.167-1.59,0.04-2.443,0.005c-0.787-0.032-1.576-0.063-2.365-0.095c-0.008-0.001-0.021-0.003-0.031-0.003c-0.037-0.002-0.072-0.003-0.109-0.005c-0.127-0.005-0.32-0.043-0.523-0.105c-0.416-0.111-0.836-0.31-0.889-0.615c-0.01-0.045-0.021-0.09-0.012-0.139c0.396-0.233,1.27-0.441,1.648-0.854c0.006-0.007,0.012-0.015,0.018-0.022c0.049-0.055,0.082-0.115,0.109-0.178c0.012-0.025,0.021-0.05,0.027-0.075c0.021-0.074,0.033-0.15,0.023-0.235c-0.023-0.19-0.047-0.35-0.053-0.496c-0.021-0.167-0.004-0.331,0.129-0.515c0.02-0.03,0.047-0.061,0.072-0.092c0.014-0.014,0.02-0.026,0.033-0.04c0.002-0.002,0.004-0.003,0.006-0.005c0.055-0.057,0.117-0.114,0.197-0.174c0.424-0.321,1.1-0.467,1.293-1.027c0.023-0.075,0.035-0.147,0.037-0.218c0.002-0.036-0.004-0.069-0.008-0.104c-0.002-0.03-0.004-0.06-0.01-0.088c-0.082-0.369-0.395-0.69-0.504-1.054c-0.006-0.018-0.004-0.037-0.008-0.054c-0.021-0.073-0.037-0.148-0.041-0.225c-0.033-0.563,0.635-0.983,0.068-1.439c-0.441-0.361-1.023-0.441-1.588-0.512c-0.174-0.02-0.344-0.038-0.494-0.063c-1.396-0.227-2.721,0.741-4.145,0.78c-0.391,0.011-0.764-0.03-1.127-0.11c-0.02-0.004-0.041-0.011-0.061-0.016c-0.154-0.037-0.307-0.078-0.455-0.129c-0.049-0.015-0.096-0.035-0.143-0.053c-0.117-0.044-0.234-0.088-0.35-0.14c-0.068-0.031-0.139-0.066-0.207-0.1c-0.086-0.043-0.172-0.087-0.258-0.134c-0.084-0.047-0.17-0.098-0.254-0.148c-0.064-0.041-0.131-0.082-0.195-0.125c-0.09-0.058-0.176-0.119-0.264-0.181c-0.064-0.048-0.131-0.098-0.197-0.148c-0.068-0.052-0.137-0.104-0.203-0.159c-0.035-0.028-0.07-0.054-0.105-0.082c-0.039-0.032-0.068-0.065-0.105-0.097c-0.049-0.042-0.098-0.081-0.145-0.124c-0.02-0.018-0.031-0.038-0.053-0.058c-0.088-0.086-0.164-0.174-0.24-0.263c-0.559-0.635-0.82-1.327-1.258-2.077c0-0.001,0-0.002-0.002-0.003c-0.201,0.177-1.447,1.449-1.584,0.84c0,0,0-0.001,0-0.002l0,0c0.021-0.67,0.334-2.584-0.15-3.42c-0.16-0.278-0.41-0.436-0.789-0.39l-2.377-0.147c-0.133-0.112-0.201-0.231-0.223-0.354c-0.117-0.679,1.201-1.507,0.967-2.145c-0.063-0.173-0.242-0.333-0.596-0.47l-4.602,0.048c-0.141-0.083-0.26-0.203-0.359-0.36c-0.297-0.47-0.408-1.274-0.334-2.413c0,0-0.002,0.022-0.004,0.059c-0.006,0.09-0.012,0.169-0.016,0.237c0,0.009,0,0.017-0.002,0.026c-0.014,0.207-0.02,0.309-0.021,0.338c0,0.014,0,0.014,0,0c0.004-0.042,0.012-0.191,0.021-0.338c0.002-0.009,0.002-0.017,0.002-0.026c0.006-0.093,0.012-0.182,0.016-0.237c0.002-0.021,0.002-0.036,0.004-0.059l-0.973,0.744c-0.828-0.255-1.521-0.362-2.227,0.296c-0.459,0.409-0.285,0.924-0.273,1.456c0.014,0.638-0.279,1.137-0.355,1.745c-0.082,0.657,0.252,1.251,0.211,1.896c-0.037,0.59-0.439,0.938-0.771,1.379c-0.643,0.852-0.664,1.931-1.299,2.758c-0.301,0.391-0.811,0.605-1.225,0.858c-1.186,0.732-2.746,1.409-2.875,2.995c-0.086,0.992,0.246,2.073,0.396,3.049c-1.877,0.095-3.631-0.364-5.482-0.487c-0.57-0.037-1.316,1.04-1.869,1.293c-0.805,0.369-1.795,0.364-2.475,0.965c-0.494,0.436-1.107,1.515-1.805,0.704c-0.441-0.394-0.865-0.829-1.336-1.189c-0.596-0.118-0.684-0.819-0.992-1.225c-0.332-0.435-0.984-0.194-1.383-0.012c-0.496,0.213-0.975,0.533-1.236,1.018c-0.191,0.355-0.307,0.625-0.674,0.841c-0.289,0.171-2.115,0.448-1.803,1.011c0.547,1.023-0.578,1.747,0,2.771c0.229,0.355,0.578,0.604,0.965,0.763c0.33,0.135,0.801,0.125,1.055,0.401c0.494,0.535,0.072,1.785,1.049,1.854c1.021-0.293,1.826-0.754,2.674,0.148c0.588,0.625,1.371,1.143,2.266,1.073c0.738-0.06,1.412-0.824,2.041-0.133c0.359,0.452,0.174,0.923,0.387,1.402c0.188,0.428,0.379,0.856,0.568,1.284c0.199,0.45,0.484,0.906,0.992,1.044c0.762,0.207,1.438-0.139,2.16,0.377c0.242,0.387,0.58,1.262,1.037,1.399c0.789,0.236,2.26-0.615,2.771,0.334c0.33,0.661,0.313,1.056-0.049,1.188c-0.426,0.04-0.656,0.106-1.037,0.297c-0.221,0.11,0.393,0.72,0.404,0.918c0.023,0.426-0.309,0.707-0.518,1.031c-0.299,0.467-0.604,0.934-0.904,1.4c-0.396,0.607-0.842,0.901-1.574,1.048c-0.539,0.108-1.816,0.197-1.816,0.997c0.246,0.437,0.732,1.004,0.783,1.516c0.059,0.6-0.896,2.449,0.107,2.592c0.805,0.234,1.213,0.342,2.029,0.198c2.033-1.28,1.74,2.723,3.07,2.723c0.74-0.448,1.535-1.094,2.352-1.39c0.531-0.192,1.953,0.071,1.953-0.738c-0.053-0.712,1.178-0.424,1.533-0.346c0.895,0.217,1.449,0.435,1.66,1.324c0.197,0.839,1.408,1.087,1.408,1.992l-0.744,0.743c-0.361,0.23-0.246,0.776,0.346,1.634c0.379,0.549,0.951,1.127,1.682,1.029c0.357-0.048,0.672-0.158,1.041-0.188c0.174,1.17-0.029,3.36,1.139,4.009c0.967,0.482,0.973-0.632,1.717-0.86c0.889-0.271,1.734,0.269,2.59,0.167c1.412-0.167,2.42-0.869,3.305-1.94c0.736-0.893,1.471-1.784,2.207-2.676c0.605-0.731,0.822-2.301,2.111-2.117c0.797-0.132,1.645,0.775,2.236,1.234c0.693,0.539,1.389,1.078,2.082,1.617c0.459,0.358,0.861,0.853,1.15,1.356c0.336,0.585,0.26,1.375,0.65,1.898c0.344,0.462,0.979,0.412,1.281,0.92c0.283,0.477,0.348,1.093,0.367,1.635c0.389,0,0.713-0.25,0.988-0.602c0.035-0.045,0.066-0.097,0.102-0.146C205.453,94.147,205.5,94.081,205.542,94.01z");
    c = R.path("M182.568,41.344c0.1,0.156,0.219,0.275,0.359,0.358l4.602-0.048c0.355,0.138,0.535,0.298,0.596,0.472c0.236,0.637-1.08,1.466-0.967,2.145c0.021,0.123,0.09,0.241,0.223,0.352l2.375,0.147c0.379-0.046,0.631,0.112,0.791,0.392c0.486,0.834,0.176,2.748,0.15,3.42c0.137,0.608,1.383-0.665,1.584-0.84c0,0.002,0.002,0.003,0.002,0.005c0.445,0.766,0.725,1.448,1.258,2.077c0.078,0.088,0.148,0.177,0.24,0.263c0.061,0.061,0.129,0.122,0.197,0.182c0.068,0.06,0.141,0.121,0.211,0.179c0.066,0.055,0.135,0.108,0.203,0.159c0.066,0.051,0.133,0.1,0.197,0.148c0.088,0.062,0.174,0.123,0.264,0.181c0.064,0.043,0.131,0.083,0.195,0.125c0.084,0.05,0.17,0.101,0.254,0.148c0.086,0.047,0.172,0.091,0.258,0.134c0.068,0.034,0.139,0.069,0.207,0.1c0.115,0.051,0.232,0.096,0.35,0.14c0.047,0.018,0.094,0.037,0.143,0.053c0.148,0.051,0.301,0.092,0.455,0.129c0.02,0.005,0.041,0.012,0.061,0.016c0.363,0.08,0.738,0.118,1.125,0.107c1.426-0.04,2.75-1.007,4.145-0.781c0.16,0.026,0.328,0.046,0.496,0.066c0.643,0.075,1.373,0.17,1.754,0.68c0.297,0.394-0.293,0.972-0.193,1.497c0.121,0.383,0.436,0.726,0.512,1.108c0.006,0.029,0.008,0.059,0.01,0.088c0.004,0.035,0.01,0.068,0.008,0.104c-0.002,0.072-0.012,0.145-0.037,0.221c-0.219,0.639-1.053,0.759-1.49,1.199c-0.016,0.015-0.025,0.03-0.039,0.045c-0.027,0.031-0.053,0.062-0.072,0.092c-0.109,0.163-0.137,0.326-0.129,0.515c0.023,0.197,0.09,0.402,0.055,0.66c-0.004,0.026-0.018,0.046-0.025,0.071c-0.006,0.025-0.016,0.05-0.027,0.075c-0.025,0.063-0.063,0.123-0.109,0.178c-0.006,0.007-0.012,0.015-0.018,0.022c-0.373,0.416-1.227,0.61-1.646,0.856c-0.01,0.049,0.002,0.092,0.01,0.137c0.066,0.282,0.494,0.497,0.889,0.615c0.242,0.065,0.479,0.101,0.633,0.11c0.742,0.03,1.484,0.061,2.229,0.09c0.895,0.036,1.818-0.187,2.611,0.002c0.123,0.027,0.24,0.074,0.355,0.125c0.025,0.011,0.051,0.015,0.076,0.027c0.287,0.142,0.555,0.368,0.789,0.728c0.756,1.162,1.514,2.325,2.271,3.488c0.34,0.527,0.686,1.054,1.029,1.581c0.279,0.434,0.324,1.08,0.738,1.412c0.682-0.031,1.877-0.449,1.93,0.494l-0.146,0.544c-0.357-0.055-1.143-0.399-1.406-0.08c-0.037,0.045-0.064,0.104-0.078,0.18c-0.066,0.297,0.016,0.643,0.248,1.04c0.121,0.222,0.33,0.324,0.619,0.306c0.098-0.006,0.203-0.026,0.32-0.059c0.512-0.184,0.813-0.554,0.891-1.088c0.098-0.264,0.295-0.331,0.594-0.199c0.279,0.093,0.383,0.303,0.439,0.527c0.051,0.194,0.07,0.397,0.135,0.546c0.08,0.193,0.242,0.295,0.664,0.164c0.125-0.029,0.229-0.076,0.318-0.13c0.594-0.372,0.391-1.231,1.125-1.446c0.322-0.093,0.643-0.124,0.939-0.248c0.004-0.001,0.006-0.003,0.008-0.004c0.086-0.035,0.164-0.081,0.244-0.134c0.037-0.025,0.072-0.055,0.105-0.084c0.113-0.117,0.258-0.321,0.402-0.44c0.012-0.011,0.023-0.019,0.035-0.028c0.01-0.007,0.02-0.015,0.029-0.021c0.105-0.073,0.213-0.077,0.307,0.111c0.232,0.429,0.543,0.643,0.941,0.643c0.684-0.076,1.434-0.762,1.982-1.189c-0.264-0.979-0.463-1.97-0.441-3.006c0.014-0.501,0.068-1.161,0.496-1.498c0.688-0.688,0.365-1.74,1.188-2.375c0.758-0.594,1.338-0.677,1.734-0.248c0.002,0.005,0.004,0.01,0.006,0.015c0.123-0.208,0.414-0.699,0.393-1.043c-0.004-0.024-0.004-0.047-0.01-0.071s-0.018-0.043-0.025-0.064c-0.014-0.03-0.029-0.06-0.051-0.085c-0.033-0.036-0.07-0.07-0.127-0.092c-0.316-0.148-0.498-0.429-0.584-0.747c-0.004-0.013-0.012-0.02-0.014-0.033c-0.008-0.035-0.006-0.064-0.014-0.098c-0.008-0.048-0.023-0.094-0.027-0.143c-0.004-0.029,0-0.053-0.002-0.08c-0.012-0.129-0.012-0.254-0.002-0.373c0-0.013,0.002-0.026,0.002-0.039c0.014-0.136,0.037-0.268,0.074-0.393c0.004-0.014,0.006-0.026,0.01-0.038c0.033-0.109,0.07-0.217,0.115-0.322c0.021-0.052,0.045-0.104,0.068-0.155c0.021-0.048,0.045-0.096,0.068-0.144c0.197-0.398,0.43-0.779,0.586-1.206c0.02-0.051,0.037-0.104,0.055-0.156c0.027-0.086,0.049-0.174,0.068-0.266c0.012-0.057,0.02-0.114,0.031-0.17c0.152-0.966,0.039-1.957-0.156-2.933c-0.115-0.555-0.248-1.101-0.363-1.625c-0.006-0.026-0.01-0.054-0.016-0.08c-0.021-0.096-0.045-0.192-0.064-0.287c-0.125-0.572-0.34-1.119-0.498-1.669c-0.123-0.254-0.23-0.512-0.215-0.786c0.008-0.139,0.02-0.281,0.031-0.42c0-0.025-0.006-0.048-0.006-0.072c0.049-0.848,0.15-1.658-0.207-2.458c-0.02-0.044-0.041-0.087-0.064-0.13c-0.318-0.633-0.811-1.154-1.139-1.784c-0.051-0.095-0.088-0.196-0.131-0.294c-0.047-0.093-0.096-0.185-0.137-0.281c-0.188-0.448-0.387-0.884-0.586-1.323c-0.223-0.43-0.445-0.858-0.631-1.292c-0.25-0.468-0.482-0.952-0.496-1.456c-0.02-0.689,0.193-1.344,0.348-1.997c0.039-0.189,0.078-0.379,0.115-0.569c0.076-0.49,0.074-0.982-0.125-1.493c-0.186-0.475-0.447-0.891-0.637-1.288c-0.328-0.61-0.537-1.224,0.086-1.764c0.223-0.179,0.42-0.384,0.592-0.607c0.012-0.015,0.021-0.032,0.031-0.048c0.146-0.196,0.268-0.41,0.369-0.635c0.02-0.046,0.045-0.09,0.064-0.137c0.029-0.066,0.049-0.132,0.072-0.2c0.025-0.075,0.053-0.149,0.074-0.226c0.031-0.116,0.061-0.232,0.082-0.349c0.002-0.009,0.002-0.019,0.004-0.028c0.15-0.851,0.008-1.699-0.275-2.552c-0.215-0.64-0.428-1.28-0.643-1.919c-0.021-0.067-0.053-0.119-0.08-0.178c-0.121-0.214-0.26-0.405-0.408-0.578c-0.467-0.427-1.102-0.59-1.617-1.07c-0.863-0.801-1.613-1.611-2.936-1.11c-1.129,0.427-0.988,1.942-2.059,2.389c-0.488,0.203-1.139,0.061-1.662,0.035c-1.354-0.07-2.814,0.032-4.146-0.121c-1.807-0.208-3.119-1.696-4.389-2.861c-0.613-0.342-0.729,1.955-0.814,2.32c-0.248,1.09-0.568,2.165-1.043,3.178c-0.305,0.652-0.676,1.379-1.262,1.829c-0.83,0.646-0.678,1.221-0.779,2.137c-0.203,1.811-2.57,2.918-4.143,3.168c-0.676,0.108-1.494,0.134-2.049-0.34c-0.533-0.458-0.611-1.173-1.369-1.411c-0.807-0.256-1.648,0.214-2.463,0.034c-0.217-0.049-0.23-0.354-0.439-0.037c-0.229,0.345-0.373,0.716-0.672,1.014c-0.377,0.376-0.896,0.462-1.281,0.851c-0.623,0.633-1.111,1.39-1.613,2.119c-0.447,0.651-0.932,1.345-1.559,1.838c-0.553,0.434-1.201,0.563-1.713,1.104c-0.576,0.61-1.141,1.235-1.717,1.848C182.162,40.068,182.271,40.873,182.568,41.344z");
    d = R.path("M222.367,22.597c0.506,0.887,0.783,2.04,0.975,2.863c0.133,0.579,0.137,1.194,0.023,1.786c0,0.01-0.004,0.019-0.004,0.028c-0.023,0.117-0.049,0.234-0.082,0.349c-0.021,0.075-0.049,0.15-0.074,0.226c-0.023,0.067-0.043,0.134-0.072,0.2c-0.008,0.021-0.014,0.042-0.021,0.063c-0.012,0.026-0.031,0.047-0.043,0.073c-0.104,0.223-0.225,0.437-0.369,0.635c-0.01,0.016-0.02,0.033-0.031,0.048c-0.111,0.146-0.232,0.287-0.367,0.414c-0.746,0.708-0.625,1.304-0.311,1.957c0.025,0.047,0.051,0.095,0.076,0.143c0.379,0.67,0.906,1.537,0.746,2.334c-0.02,0.102-0.041,0.202-0.061,0.303c-0.029,0.19-0.068,0.38-0.115,0.569c-0.068,0.352-0.141,0.703-0.209,1.054c-0.174,0.86,0.031,1.64,0.357,2.398c0.139,0.259,0.279,0.516,0.398,0.765c0.084,0.175,0.154,0.352,0.232,0.526c0.107,0.204,0.211,0.408,0.311,0.614c0.152,0.324,0.271,0.661,0.412,0.989c0.365,0.713,0.912,1.362,1.27,2.078c0.016,0.03,0.035,0.058,0.051,0.088c0.006,0.014,0.008,0.027,0.014,0.042c0.156,0.345,0.268,0.706,0.279,1.102c0.012,0.473-0.029,0.951-0.066,1.428c-0.012,0.413,0.07,0.811,0.184,1.206c0.098,0.203,0.205,0.404,0.27,0.611c0.135,0.434,0.201,0.9,0.293,1.346c0.127,0.558,0.266,1.127,0.379,1.704c0.203,0.978,0.33,1.979,0.156,2.933c-0.006,0.032-0.006,0.064-0.012,0.097c-0.006,0.025-0.014,0.048-0.02,0.073c-0.01,0.04-0.012,0.081-0.021,0.12c-0.014,0.051-0.033,0.097-0.047,0.146c-0.018,0.053-0.033,0.106-0.055,0.156c-0.156,0.432-0.387,0.816-0.586,1.206c-0.023,0.048-0.047,0.095-0.068,0.144c-0.023,0.051-0.047,0.104-0.068,0.155c-0.043,0.105-0.082,0.212-0.115,0.322c-0.004,0.012-0.006,0.024-0.01,0.038c-0.035,0.125-0.061,0.256-0.074,0.393c0,0.013-0.002,0.025-0.002,0.039c-0.012,0.118-0.008,0.244,0.002,0.373c0.008,0.073,0.016,0.146,0.029,0.223c0.008,0.044,0.016,0.088,0.027,0.131c0.123,0.452,0.408,0.517,0.703,0.825c0.004,0.004,0.004,0.01,0.008,0.015c0.023,0.025,0.037,0.054,0.051,0.085c0.01,0.021,0.02,0.042,0.025,0.064c0.004,0.023,0.008,0.047,0.01,0.071c0.031,0.343-0.256,0.813-0.393,1.043c0.123,0.385,0.336,0.618,0.254,1.061c-0.117,0.643-0.785,1.498-0.359,2.141c0.305,0.483,0.855,0.197,1.311,0.409c0.385,0.182,0.672,0.481,1.084,0.608c1.021,0.312,2.223,0.041,3.209-0.27c0.885-0.276,1.465-0.759,2.387-0.708c0.289,0.017,0.018,0.049,0.303,0.13c0.223,0.064,0.496-0.293,0.654-0.397c0.387-0.252,0.842-0.348,1.299-0.268c1.086,0.242,1.25,1.26,1.436,2.177c-0.813,0.854-1.67,1.682-2.42,2.592c-0.783,0.948-1.129,1.813-1.428,2.979c-0.105,0.412-1.152,2.001-0.855,2.249c0.592,0.035,2.594-0.262,2.477,0.693c-0.145,0.494-0.291,0.989-0.438,1.485c-0.119,0.406-0.701,0.579-1.047,0.784c-0.238,0.143-0.574,0.23-0.783,0.396c-0.271,0.217,0.105,0.428-0.066,0.617c-0.41,0.445-1.699,0.043-1.773,0.875c-0.174,1.029,1.518-0.243,0.742,1.238c-0.381,0.719-0.768,0.682-1.438,0.459c-0.484-0.162-0.252,0.412-0.148,0.63c0.297,0.627,0.611,0.989,0.941,1.088c0.461,0.098,0.346,0.314-0.348,0.643c0.082-0.021,0.162-0.028,0.236-0.025c0.527,0.02,0.895,0.563,1.248,0.917c1.053,0,2.611,1.333,3.66,1.137c0.318-0.093,0.576-0.057,0.807,0.042c0.047,0.016,0.092,0.021,0.141,0.045c0.539,0.269,0.805,0.824,1.293,1.149c0.348,0.231,0.986,0.072,1.381,0.052c0.098-0.005,0.186-0.029,0.275-0.05c0.041-0.01,0.086-0.014,0.127-0.027c0.086-0.028,0.164-0.067,0.244-0.107c0.033-0.016,0.066-0.027,0.096-0.044c0.104-0.057,0.199-0.123,0.295-0.192c0.006-0.004,0.012-0.007,0.018-0.012c0.518-0.381,0.977-0.891,1.658-1.005c0.889-0.106,1.879,0.071,2.771,0.099c0.203,0.027,0.393,0.018,0.572-0.011c0.021-0.004,0.045-0.005,0.066-0.01c0.162-0.032,0.311-0.092,0.449-0.168c0.035-0.02,0.07-0.041,0.104-0.063c0.121-0.079,0.232-0.176,0.332-0.288c0.033-0.04,0.064-0.082,0.096-0.125c0.096-0.128,0.184-0.267,0.252-0.427c0.02-0.045,0.035-0.093,0.053-0.139c0.082-0.237,0.172-0.58,0.295-0.917c0.002,0,0.002-0.001,0.002-0.002c0.148-0.4,0.348-0.775,0.652-0.911c0.053-0.025,0.111-0.032,0.168-0.04c0.027-0.004,0.053-0.019,0.08-0.019l1.832,0.347c0.262-0.831,0.418-1.592,1.254-2.044c0.689-0.37,1.391-0.716,2.084-1.078c0.006-0.002,0.012-0.005,0.018-0.007c0.035-0.019,0.07-0.037,0.105-0.056c0.041-0.021,0.098-0.042,0.145-0.063c0.055-0.025,0.105-0.048,0.166-0.072c0.055-0.022,0.102-0.041,0.16-0.061c0.371-0.139,0.777-0.245,1.066-0.184c0.121,0.108,0.23,0.183,0.336,0.245c0.025,0.014,0.049,0.028,0.072,0.041c0.574,0.29,0.941-0.066,1.146-0.639c0.004-0.004,0.006-0.008,0.006-0.013c0.033-0.094,0.061-0.197,0.084-0.301c0.008-0.033,0.018-0.064,0.025-0.097c0.02-0.092,0.033-0.188,0.047-0.284c0.004-0.029,0.01-0.06,0.016-0.09c0.045-0.385,0.008-0.708-0.086-0.989c-0.004-0.015-0.004-0.034-0.01-0.049c-0.043-0.12-0.102-0.228-0.166-0.334c-0.014-0.023-0.021-0.05-0.035-0.073c-0.078-0.121-0.17-0.232-0.27-0.337c-0.004-0.004-0.006-0.008-0.01-0.012c-0.418-0.438-1.006-0.77-1.58-1.16c-0.182-0.123-1.209,0.199-1.322,0.347c-0.291,0.376-0.496,0.859-0.732,1.271c-0.502,0.449-0.275-0.784-0.248-0.941c0.189-0.884,0.518-1.736,0.92-2.542c0.363-0.729,0.547-1.55,0.787-2.328c0.459-1.49,2.234-2.261,3.498-2.996c1.289-0.749,2.615-1.253,3.98-1.82c1.164-0.483,2.137-1.202,2.873-2.215c0.469-0.647,0.906-0.988,0.762-1.809c-0.375-0.627,0.152-1.471,0.123-2.166c-0.033-0.864-0.281-1.751-0.637-2.537c-0.174-0.384-1.865-3.112-2.455-2.524c-0.209,0.088-0.471,0.267-0.691,0.296c-0.355-0.11-0.822-0.146-0.941,0.297c-0.232,0.93,1.422,1.926,1.902,2.607c0.674,0.954,1.061,2.074,1.166,3.233c0.004,0.059,0.064,1.113-0.143,0.915c-0.359-0.342-0.512-1.06-0.668-1.504c-0.359-1.02-0.428-1.971-1.52-2.414c-0.676-0.275-2.027-0.47-2.027-1.451c-0.051-0.735,0.629-0.548,0.67-1.125c0.041-0.608-0.133-1.068-0.422-1.573c-0.268-0.468-0.563-0.867-0.857-1.31c-0.344-0.515-0.426-1.822-1.023-2.078l-0.594-0.049c-0.957-0.113-1.111-1.625-1.252-2.33c-0.205-1.028-0.537-2.171-1.324-2.917c-0.783-0.639-1.85-1.075-2.738-1.561c-1.18-0.647-0.17-2.314,0.156-3.269c0.211-0.611,1.414-3.12,0.506-3.534c-0.631-0.025-1.262-0.051-1.891-0.075c-0.609-0.025-1.758,0.333-2.121-0.271c-0.328-0.47,0.014-1.426,0.143-1.903c0.248-0.938,0.574-1.854,0.742-2.813c0.09-0.49-0.084-0.824-0.068-1.262c0.029-0.896,0.863-1.597,0.883-2.566c0.016-0.94-0.414-1.572-1.076-2.169c-0.58-0.523-0.516-1.326-1.166-1.781c-0.74-0.521-1.576-0.82-2.26-1.443c-0.434-0.395-1.084-1.427-1.797-1.01c-1.092,0.66-2.047,1.105-2.873,1.336c-1.422,0.339-2.734-1.35-3.756-2.052c-1.098-0.752-2.721-1.616-4.105-1.29c-0.521,0.123-0.701,0.669-1.268,0.669c-0.424,0-0.912-0.144-1.25-0.399c-0.564-0.428-1.131-0.855-1.697-1.283c-0.475,0.105-3.922,0.719-3.314,1.583l0.195,0.347c-0.605,0.467-0.816,0.504-1.588,0.542c-0.523,0.026-1.139,0.355-1.633,0.516c-0.92,0.296-2.264,0.132-3.164-0.167c-0.203-0.041-0.338,0.849-0.793,0.94c0.777,0.603,1.418,1.257,2.289,1.696c0.25,0.126,0.463,0.323,0.658,0.547C222.121,22.168,222.259,22.355,222.367,22.597z");
    e = R.path("M276.814,85.412c-0.188-0.802-0.711-1.148-1.115-1.804c-0.475-0.765,0.049-1.744-0.355-2.607c-0.479-0.788-0.213-1.383-0.219-2.214c-0.008-1.667-1.26-3.131-1.814-4.637c-0.271-0.731-0.342-1.389-0.328-2.159c0.012-0.545,0.012-1.346-0.459-1.731c-0.275-0.319-0.637-0.59-0.945-0.876c-0.369-0.341-0.604-0.77-0.967-1.11c-0.35-0.327-0.736-0.292-1.182-0.314c-0.516-0.027-0.867-0.53-1.361-0.421c-0.445,0.056-0.244,0.517-0.293,0.799c-0.061,0.354-0.566,0.444-0.846,0.489c-0.781,0.148-1.172-0.263-1.852-0.329c-0.541-0.054-1.084-0.105-1.625-0.16c-0.541-0.052-0.709-0.489-1.309-0.299c-0.486,0.152-0.975,0.308-1.459,0.461c-1.971,0.622-4.191,2.288-5.586,3.84c0.58,0.394,1.178,0.731,1.602,1.176c0.004,0.004,0.006,0.008,0.01,0.012c0.1,0.105,0.191,0.216,0.27,0.337c0.014,0.022,0.021,0.05,0.035,0.073c0.064,0.106,0.123,0.214,0.166,0.334c0.006,0.015,0.006,0.034,0.01,0.049c0.094,0.282,0.133,0.604,0.086,0.988c-0.004,0.032-0.012,0.061-0.016,0.091c-0.014,0.093-0.027,0.187-0.047,0.284c-0.008,0.034-0.016,0.064-0.025,0.097c-0.023,0.103-0.051,0.203-0.084,0.301c0,0.004-0.002,0.008-0.006,0.013c-0.191,0.56-0.543,0.961-1.146,0.639c-0.023-0.012-0.047-0.027-0.072-0.041c-0.051-0.032-0.096-0.047-0.15-0.089c-0.281-0.215-0.809-0.124-1.252,0.027c-0.055,0.021-0.109,0.039-0.16,0.061c-0.061,0.023-0.113,0.047-0.166,0.072c-0.09,0.04-0.178,0.082-0.25,0.119c-0.607,0.318-1.219,0.632-1.822,0.952c-1.027,0.442-1.23,1.213-1.533,2.178l-1.832-0.347c-0.027,0-0.053,0.013-0.08,0.018c-0.057,0.008-0.115,0.017-0.168,0.04c-0.299,0.142-0.506,0.526-0.652,0.911c0,0.001,0,0.002-0.002,0.002c-0.107,0.29-0.184,0.579-0.234,0.762c-0.018,0.054-0.039,0.103-0.061,0.155c-0.014,0.04-0.027,0.085-0.041,0.118c-0.002,0.008-0.008,0.013-0.012,0.021c-0.068,0.157-0.154,0.298-0.252,0.427c-0.031,0.043-0.063,0.085-0.096,0.125c-0.1,0.112-0.211,0.208-0.332,0.288c-0.033,0.022-0.068,0.042-0.104,0.063c-0.137,0.077-0.285,0.135-0.449,0.168c-0.023,0.004-0.045,0.006-0.066,0.01c-0.178,0.029-0.365,0.039-0.57,0.012c-0.895-0.027-1.885-0.206-2.771-0.099c-0.686,0.115-1.143,0.623-1.66,1.004c-0.006,0.004-0.012,0.007-0.018,0.012c-0.096,0.069-0.191,0.135-0.295,0.192c-0.029,0.018-0.063,0.029-0.096,0.044c-0.08,0.04-0.158,0.08-0.244,0.107c-0.041,0.013-0.086,0.017-0.127,0.027c-0.078,0.018-0.148,0.042-0.232,0.049c-0.373,0.056-1.092,0.17-1.422-0.05c-0.516-0.345-0.891-0.962-1.436-1.196c-0.373-0.128-0.701-0.027-1.105-0.004c-0.887,0.049-2.416-1.174-3.361-1.174c-0.354-0.355-0.721-0.897-1.248-0.917c-0.074-0.003-0.154,0.004-0.236,0.025c-0.205,0.094-0.391,0.164-0.58,0.228c1.084,0.681,3.547,2.159,3.453,3.089c-0.467,0.351-0.881,0.368-1.189,0.94c-0.197,0.33-0.213,0.759-0.049,1.287c0.063,0.457-1.008,0.454-1.24,0.49c-0.707,0.112-1.406,0.354-1.979,0.797c-0.113,0.085-0.219,0.184-0.313,0.29c-0.012,0.011-0.021,0.022-0.033,0.034c-0.066,0.078-0.123,0.162-0.176,0.25c-0.141,0.246-0.213,0.525-0.188,0.829c0.047,0.3,0.172,0.584,0.148,0.896c-0.059,0.761-1.084,0.486-0.924,1.453c0.033,0.204,0.092,0.408,0.156,0.612c0.125,0.32,0.279,0.62,0.361,0.817c0.199,0.468,0.395,0.937,0.592,1.406c0.002,0.003,0.004,0.007,0.006,0.011c0,0.001,0,0.002,0,0.003c0.115,0.273,0.232,0.546,0.348,0.819c0.365,0.873,0.098,2.002-0.145,2.996c-0.189,0.924-0.344,1.591,0.047,2.498c0.066,0.155,0.1,0.319,0.113,0.486c0,0.004,0,0.008,0.002,0.012c0.012,0.16,0.004,0.325-0.016,0.49c-0.002,0.026-0.006,0.051-0.008,0.076c-0.018,0.131-0.045,0.261-0.072,0.388c-0.045,0.204-0.098,0.402-0.148,0.583c-0.035,0.114-0.055,0.229-0.08,0.345c-0.047,0.19-0.078,0.381-0.096,0.572c-0.006,0.056-0.014,0.112-0.018,0.167c-0.012,0.19-0.014,0.38-0.006,0.57c0.002,0.062-0.002,0.125,0.002,0.188c0.004,0.048,0.012,0.097,0.016,0.144c0.082,0.985,0.355,1.968,0.527,2.93c0.029,0.16,0.043,0.322,0.066,0.484c0.018,0.126,0.039,0.252,0.051,0.38c0.014,0.121,0.018,0.242,0.025,0.363c0.008,0.108,0.021,0.217,0.023,0.326c0,0.059-0.008,0.13-0.02,0.208c-0.002,0.109,0.012,0.218,0.004,0.327c-0.025,0.311-0.076,0.62-0.174,0.916c-0.023,0.076-0.023,0.155-0.021,0.235c0.008,0.032,0.014,0.065,0.027,0.089c0.264,0.426,0.527,0.854,0.791,1.281c0.723,1.175,1.293,2.478,2.248,3.49c0.918,0.972,2.145,0.802,3.365,0.841c0.811,0.338,0.74,1.313,1.057,1.984c0.291,0.618,0.947,1.192,1.643,1.28c0.721,0.091,1.225-0.135,1.971,0.159c0.412,0.162,1.498,0.53,1.566,1.082c0.104,0.714-1.84-0.118-1.188,0.939c0.359,0.779,1.258,0.83,1.684,1.485c0.469-0.161,0.938-0.322,1.406-0.484c0.895-0.309,0.961-0.958,1.559-1.515c0.729-0.677,1.838-0.733,2.545-1.458c0.324-0.334,0.512-0.75,0.881-1.056c0.422-0.353,0.924-0.608,1.365-0.95c0.705-0.55,1.389-1.232,1.697-2.093c0.295-0.846,0.207-1.687,0.596-2.539c0.389-0.936,0.535-1.963,0.594-2.97c0.068-0.5-0.537-1.173-0.795-1.584c-0.674-1.602,2.633-2.366,2.971-3.612c0.127-0.566-0.986-0.328-1.287-0.298c0.268-0.451,0.668-0.846,1.002-1.25c0.215-0.259,0.723-1.549,1.027-1.472c0.082,0.35,0.16,0.701,0.24,1.052c0.168,0.742-0.863,0.839-0.734,1.225c0.102,1.203,3.229,0.519,3.9,0.465c0.479-0.038,1.016-0.154,1.494-0.119c0.283,0.021,0.559,0.176,0.842,0.197c0.514-0.114,1.049-0.039,1.434,0.347l0.596,1.337c0.23,0.561,0.594,0.561,1.088,0c0.711-0.757,0.553-1.538,0.594-2.476c0.225,0.366,0.736,1.457,1.289,1.09c0.129-0.218,0.473-1.095,0.691-1.139c0.637-0.158,1.109-0.7,1.465-1.22c0.523-0.765,0.777-1.7,1.367-2.417c0.295-0.357,0.705-0.429,1.127-0.569c0.148-0.374-0.754-0.663-0.891-0.978c-0.211-0.485,0.041-1.098,0.064-1.6c0.018-0.347-0.055-3.105-0.711-2.917c-0.131,0-0.195,0.198-0.195,0.594c-0.033,0.264-0.199,0.264-0.494,0c-0.23-0.197-0.217-0.479,0.047-0.841c0.164-0.231,0.018-0.379-0.443-0.446c-0.271-0.051-0.799-0.125-0.891,0.248c-0.1,0.056-0.221,0.201-0.334,0.196c-0.447-0.02-0.928-0.124-1.346,0.061c-0.418,0.184-0.805,0.601-1.203,0.857c-0.416,0.268-0.834-0.199-1.201-0.254c-0.82-0.123,0.225-1.036,0.645-1.199c0.422-0.165,0.73-0.542,0.92-0.963c0.166-0.363,0.34-0.793,0.283-1.202c-0.045-0.329-0.143-0.608-0.043-0.944c0.152-0.515,0.693-0.861,1.043-1.253c-0.189-0.332-0.613-0.811-0.375-1.167c0.223-0.336,0.447-0.674,0.672-1.01c0.197-0.561,0.1-0.627-0.297-0.199c-0.461,0.396-0.627,0.479-0.494,0.248c0.27-0.672-0.348-0.771-0.348-1.385c0-0.475,0.002-1.022-0.207-1.463c-0.311-0.662-1.119-0.047-1.178-1.061c-0.068-0.561,0.262-0.909,0.99-1.04c1.139-0.296-0.801-1.159-1.09-1.286c-0.141-0.066-2.314-1.092-1.535-1.336c1.326-0.515,0.783-1.563,1.191-2.673c0.264-0.759,0.775-0.858,1.533-0.296v0.048c0.754,0.604,1.553,1.445,2.426,1.881c1.004,0.401,1.17,1.442,1.385,2.375c0.424-0.078,1.184-0.561,1.336,0.049c0.248,1.255,0.498,2.508,0.744,3.763c0.104,0.535,0.014,0.714-0.184,1.252c-0.295,0.794-0.244,1.116,0.279,1.865c0.512,0.769-0.559,1.313-1.088,1.61c-0.668,0.375-1.121,0.992-1.236,1.754c-0.189,1.116,0.467,1.708,1.078,2.518c0.42,0.555,0.689,1.189,0.957,1.826c0.328,0.78,0.654,1.559,0.982,2.338c0.297,0.66,0.545,0.71,0.74,0.148c0.41-1.144,0.893-1.672,0.744-2.92c-0.043-0.523,0.059-1.148,0.693-1.188c0.584-0.032,0.852-0.427,0.791-0.99c-0.229-0.751-0.457-1.504-0.686-2.256c-0.379-1.252,1.025-1.678,1.531-2.637C276.951,87.202,277.013,86.266,276.814,85.412z");
    f = R.path("M230.003,109.262c0.004-0.178,0.008-0.355-0.004-0.533c-0.008-0.121-0.012-0.243-0.025-0.363c-0.012-0.128-0.033-0.254-0.051-0.38c-0.17-1.141-0.506-2.273-0.594-3.414c-0.004-0.047-0.012-0.096-0.016-0.144c-0.004-0.063,0-0.126-0.002-0.188c-0.008-0.19-0.006-0.38,0.006-0.57c0.004-0.056,0.012-0.112,0.018-0.167c0.018-0.191,0.049-0.382,0.096-0.572c0.008-0.041,0.01-0.081,0.02-0.122c0.061-0.251,0.145-0.525,0.209-0.806c0.027-0.127,0.055-0.257,0.072-0.388c0.002-0.024,0.006-0.05,0.008-0.076c0.02-0.165,0.027-0.33,0.016-0.49c-0.002-0.004-0.002-0.008-0.002-0.012c-0.016-0.169-0.051-0.333-0.115-0.485c-0.244-0.564-0.357-0.967-0.246-1.6c0.051-0.277,0.123-0.582,0.201-0.899c0.012-0.055,0.021-0.101,0.033-0.156c0.275-1.366,0.293-2.405-0.236-3.659c-0.002-0.004-0.004-0.01-0.006-0.014c-0.297-0.707-0.711-1.461-0.953-2.223c-0.217-0.552-0.354-1.166,0.086-1.427c0.734-0.438,0.688-0.554,0.535-1.411c-0.008-0.042,0.002-0.082-0.002-0.124c-0.018-0.116-0.025-0.235-0.004-0.358c0.027-0.174,0.102-0.327,0.191-0.471c0.053-0.088,0.109-0.172,0.176-0.25c0.012-0.012,0.021-0.023,0.033-0.034c0.094-0.105,0.199-0.204,0.313-0.29c0.572-0.444,1.27-0.685,1.979-0.797c0.232-0.037,1.303-0.034,1.24-0.49c-0.164-0.528-0.148-0.957,0.049-1.287c0.307-0.572,0.723-0.589,1.189-0.94c0.092-0.93-2.371-2.409-3.453-3.089c-0.254,0.086-0.51,0.158-0.805,0.218c0.117,0.178,0.709,0.874,0.248,0.939c-0.641,0-0.77-0.629-1.414-0.307c-0.258,0.128-0.736,0.626-0.986,0.233c-0.324-0.508-0.313-1.5-0.42-2.104c-0.508,0.098-0.947,0.387-1.48,0.213c-0.836-0.275-1.234-1.17-2.232-1.104c-0.332,0-0.648,0.109-0.859,0.374c-0.1,0.13-0.213,0.701-0.451,0.599c-0.412-0.175-0.613-0.537-1.066-0.131c-0.166,0.149-0.506,0.439-0.742,0.248l-0.742-0.742l0.346-0.297c0.346-0.198-0.439-0.261-0.545-0.296c-0.162,0.327-0.443,2.039-1.055,2.075c-0.086,0.005-0.182-0.023-0.283-0.096l-1.432,0.049c-0.334,0.187-0.564,0.446-0.74,0.743c-0.041,0.07-0.078,0.142-0.113,0.214c-0.008,0.017-0.018,0.033-0.025,0.048c-0.182,0.399-0.301,0.842-0.473,1.263c-0.002,0.008-0.008,0.015-0.012,0.023c-0.02,0.049-0.037,0.1-0.057,0.149c-0.24,0.588-0.898,1.166-1.365,1.632c-0.65,0.651-0.91,1.181-1.137,2.046c-0.074,0.333-0.145,0.758-0.277,1.139c-0.135,0.406-0.348,0.76-0.75,0.861c0,0-0.002,0-0.004,0c-0.066,0.005-0.119,0-0.176-0.004c-0.02-0.002-0.047,0.001-0.064-0.002c-0.504-0.07-0.566-0.52-1.049-0.731c-0.494-0.217-0.988-0.433-1.482-0.648c-0.148-0.05-0.289-0.073-0.42-0.072c-0.395,0.007-0.717,0.245-0.963,0.715c-0.182,0.33-0.254,0.658-0.291,0.983c-0.045,0.428-0.031,0.85-0.137,1.296c-0.006,0.028-0.014,0.054-0.02,0.081c-0.006,0.023-0.01,0.045-0.016,0.068c-0.008,0.023-0.02,0.045-0.029,0.069c-0.016,0.055-0.029,0.109-0.051,0.164c-0.023,0.058-0.057,0.112-0.082,0.168c-0.016,0.033-0.031,0.065-0.047,0.097c-0.225,0.442-0.516,0.852-0.756,1.287c-0.201,0.396-0.445,1.001-0.766,1.52c-0.043,0.072-0.09,0.137-0.137,0.204c-0.035,0.048-0.066,0.101-0.102,0.146c-0.271,0.35-0.592,0.602-0.984,0.602c-0.531,1.215,0.566,2.199-0.098,3.415l-0.297-0.048c-0.33-0.133-0.512,0.131-0.545,0.791c-0.146,1.276,1.396,0.884,1.877,1.696c0.26,0.441,0.15,1.055,0.221,1.544c0.076,0.551,0.221,1.095,0.408,1.621c0.277,0.786,0.764,2.226,1.691,2.486c0.498,0.14,0.836,0.191,1.25,0.559c0.313,0.277,0.596,0.826,1.088,0.756c0.619-0.425,1.332-1.202,2.119-0.987c1.344,0.365,2.166,1.629,2.479,2.942c0.174,0.729,0.145,1.535-0.297,2.167c-0.328,0.466-0.857,0.785-1.086,1.323c-0.217,0.585-0.143,1.54,0.033,2.122c0.088,0.292,1.074,1.518,0.559,1.59h-0.146c-0.625-0.032-0.906,0.264-0.842,0.892c0.053,0.905,0.955,1.928,1.84,2.097c0.799,0.154,1.531-0.27,2.309-0.21c0.621,0.049,1.061,0.108,1.699,0.059c0.484-0.037,0.975-0.075,1.459-0.112c0.844-0.064,1.428-0.694,2.123-1.135c1.039-0.661,0.85,0.393,1.549,0.711c0.971,0.442,4.357-0.022,4.217-1.556l-0.146-1.931c0.063-0.462,0.395-0.644,0.988-0.545c1.115,0.08,0.137,1.695,1.377,1.54c0.861-0.107,0.471-1.47,1.344-1.689c-0.674-0.955-1.014-2.222-1.387-3.313c-0.102-0.31-0.289-0.671-0.293-1.005C229.722,110.414,229.937,109.71,230.003,109.262z");
    g = R.path("M240.507,125.312c-0.121-0.137-0.418-0.468-0.002-0.004c-0.455-0.506-0.717-0.993-1.014-1.583c-0.1-0.197-0.195-0.393-0.295-0.589c-0.055-0.109-0.797-0.21-0.951-0.271c-1.643-0.65-1.818-2.322-3.105-3.33c-1.502-1.174-2.502-2.756-3.924-4.01c-0.873,0.218-0.482,1.578-1.342,1.686c-1.24,0.155-0.262-1.458-1.375-1.537c-0.592-0.099-0.922,0.082-0.988,0.543l0.148,1.927c0.133,1.458-2.693,1.74-3.635,1.679c-0.822-0.053-0.697-0.444-1.162-0.92c-0.537-0.551-1.576,0.549-1.998,0.819c-1.275,0.815-3.348,0.619-4.816,0.497l-0.078-0.36c-1.777,3.577,0.566,8.276-3.105,10.518c0.578,0.479-0.52,0.915-0.881,1.145c-0.52,0.334-1.043,0.668-1.563,1.002c0.863,0.778,1.725,1.557,2.584,2.335c0.453,0.409,0.85,0.809,1.168,1.344c0.342,0.573,0.539,1.234,0.447,1.904c-0.115,0.602-0.094,0.93,0.361,1.298c0.705,0.57-0.307,2.072,0.605,2.505c0.424,0.202,0.725,0.257,0.859,0.778c0.123,0.47,0.127,0.897,0.439,1.301c0.525,0.679,1.377,0.841,2.166,1.025c0.678,0.158,1.768,0.236,1.988,1.046c0.438,1.233-1.846,1.646-1.318,2.881c0.229,0.536,0.83,1.01,1.43,0.988c0.68-0.024,1.109-0.684,1.83-0.509c0.66,0.162,1.068,0.782,1.563,1.196c0.543,0.456,1.18,0.83,1.887,0.943c1.16,0.187,1.924-0.394,1.775-1.596l-0.941-0.049c0.738-0.044,0.961-0.121,1.598-0.495c0.801-0.471,1.541-1.13,2.504-0.939c0.432,0,0.713-2.432,0.797-2.713c0.322-1.091,1.068-1.658,1.625-2.572c-1.26-0.421-2.41-0.823-2.223-2.422c0.066-0.955,0.443-1.811,1.137-2.569c0.998-1.209-2.072-1.794-2.779-1.974c-0.514-0.131-1.076-0.217-1.576-0.393c-0.957-0.338-1.385-1.389-1.604-2.298c-0.27-1.122-0.305-2.326-0.439-3.471c-0.119-1.006,0.752-1.228,1.021-2.08c0.178-0.557-0.078-1.049,0.324-1.565c0.316-0.406,0.818-0.734,0.951-1.263c0.193-1.158-2.725-0.779-3.111-1.581c0.934,0.095,1.867,0.19,2.801,0.284c0.492,0.05,1.018,0.027,1.498,0.127c0.918,0.191,1.244,0.93,1.898,1.499c1.367,1.188,3.475,1.933,5.273,2.063C237.763,127.61,241.281,126.199,240.507,125.312z");
    h = R.path("M170.384,109.286c-0.703-0.223-1.354-0.511-2.08-0.692c-0.814-0.204-1.621-0.354-2.35-0.801c-1.143-0.7-1.551-1.737-2.152-2.861c-0.51-0.953-1.063-1.228-2.066-1.396l-0.344-0.885c-0.119-1.344-2.92-1.206-3.768-1.244c-1.143-0.053-3.17,0.093-4.146-0.673c-1.082-0.814-0.961-2.676-0.99-3.856c-0.023-1.059,0.092-2.608-0.482-3.564c-0.15-0.404-0.771-0.548-1.131-0.638c-0.691-0.174-1.371-0.462-1.916-0.934l-0.146,0.099c-1.025-0.986-1.387-2.238-2.088-3.425c-0.734-1.24-2.068-1.427-2.975-2.436c-1.004-1.119-1.336-2.691-2.316-3.869c-0.688-0.824-1.482-1.563-2.205-2.359c-0.36-0.652,0.572-0.989,0.135-1.673c-0.234-0.364-0.578-0.667-0.871-0.981c1-0.067,2.193,0.048,3.142-0.252c0.582-0.184,0.775-0.756,1.41-0.88c0.564-0.109,1.932,0.101,2.131-0.686c0.445-1.436,0.813-3.263,2.408-3.882c1.102-0.367,1.922,0.575,2.885,0.889c0.627,0.205,1.303,0.193,1.957,0.233c1.121,0.068,2.242,0.136,3.363,0.205c0.355-0.238,0.541-0.604,0.443-1.032c-0.107-0.532,0.24-1.036,0.576-1.409c0.432-0.475,0.943-0.915,1.547-1.15c0.459-0.179,1.094-0.12,1.463-0.488l0.195-0.541c0.441-1.416,3.092-0.188,3.439-1.475c0.26,0.583,0.52,1.165,0.775,1.747c0.625,1.406,2.02,0.509,3.059,1.25c0.213,0.34,0.516,1.118,0.863,1.319c0.816,0.468,2.361-0.631,2.918,0.401c0.326,0.655,0.313,1.049-0.051,1.18c-0.422,0.039-0.648,0.105-1.027,0.295c-0.242,0.12,0.311,0.603,0.355,0.715c0.182,0.429-0.193,0.905-0.457,1.201c-0.287,0.421-0.555,0.855-0.832,1.283c-0.354,0.55-0.672,0.912-1.346,1.097c-0.568,0.155-2.1,0.171-2.1,1.06c0.238,0.426,0.598,0.88,0.746,1.347c0.205,0.646-0.912,2.582,0.141,2.731c0.797,0.233,1.203,0.34,2.014,0.197c2.021-1.271,1.729,2.703,3.047,2.703c0.736-0.446,1.527-1.086,2.334-1.38c0.529-0.191,1.941,0.07,1.941-0.733c-0.049-0.707,1.17-0.421,1.523-0.344c0.508,0.123,1.621,0.377,1.621,1.081c0,1.02,1.426,1.229,1.426,2.211l-0.738,0.738c-0.359,0.229-0.246,0.77,0.344,1.622c0.336,0.486,0.816,1.003,1.449,1.031c0.402,0.018,0.84-0.162,1.254-0.196c0.172,1.162-0.029,3.336,1.131,3.98c0.922,0.461,0.906-0.498,1.547-0.794c0.74-0.342,1.748-0.05,2.482,0.155c-0.633,0.254-0.459,1.108-0.678,1.616c-0.234,0.545-1.449,0.882-1.189,1.529c0.822,1.206,2.064,2.302,2.502,3.715c0.279,0.906,0.012,2.04-0.045,2.968c-0.195,0.487-0.76,0.23-1.105,0.147c-0.625-0.149-1.178-0.227-1.816-0.024c-1.492,0.471-2.73,1.933-2.73,3.489c0,0.638,0.002,1.625-0.342,2.165c-0.434,0.679-0.795,1.59-1.525,1.988l-0.098-0.147l0.197,0.098l-0.197-0.098c-0.688-0.986,0.912-2.16,0.395-3.194c-0.498-0.803-1.74-0.013-2.064,0.54c-0.482,0.806-0.109,1.675,0.1,2.506c-0.758-0.363-1.283-0.63-2.121-0.437c-0.523,0.121-1.008,0.255-1.516,0.437l0.098-0.492c0.264-0.655,0.018-0.966-0.736-0.934c-0.299-0.02-0.596,0.128-0.836-0.098l0.393-0.492c0.557-0.557,0.508-0.852-0.145-0.884C172.533,106.833,172.039,109.029,170.384,109.286C170.384,109.286,170.81,109.22,170.384,109.286z");
    i = R.path("M204.382,128.594c-0.34-0.018-1.064,0.073-1.342-0.16c-0.344-0.287,0.041-0.645,0.297-0.784c0.424-0.309,0.523-0.849,0.498-1.343c-0.125-0.943-1.072-1.089-1.641-1.703c-0.734-0.798-1.107-1.837-1.746-2.705c-0.551-0.748-1.215-0.975-1.889-1.53c-0.689-0.568-0.477-1.549-1.336-2.065c-0.967-0.508-1-1.283-1.555-2.1c-0.506-0.745-1.307-1.149-1.777-1.976c-0.664-1.043-1.303-0.68-2.303-0.55c-0.4,0.052-0.801-0.041-1.105-0.315c-0.279-0.251-0.574-0.696-1.016-0.478c-0.721,0.576-1.373,1.251-2.379,0.936c-0.943-0.296-2.596-2.282-3.688-1.483c-0.691,0.404-0.928,0.417-1.65,0.009c-0.594-0.334-1.188-0.668-1.777-1.003c-0.504-0.502,0.729-1.093,1.043-1.243c-0.695-0.995,0.918-2.186,0.396-3.231c-0.525-0.839-1.377,0.159-1.813,0.524c-0.684,0.577-0.061,2.003,0.123,2.707c-0.76-0.35-1.367-0.802-2.26-0.677c-0.559,0.079-1.16,0.381-1.719,0.528l0.1-0.497c0.266-0.662,0.018-0.978-0.744-0.944c-0.088,0.002-0.945,0.099-0.848-0.1l0.396-0.497c0.564-0.563,0.516-0.861-0.146-0.894c-1.768-0.124-2.395,2.497-4.078,2.386c-1.238-0.372-2.543-0.661-3.746-1.143c-1.418-0.568-2.137-1.638-2.762-2.963c-0.523-1.107-1.088-1.519-2.24-1.71c-0.166-0.133-0.281-0.431-0.35-0.895c-0.102-1.163-2.287-1.189-3.07-1.229c-1.482-0.074-3.248,0.029-4.652-0.555c-1.166-0.485-1.244-2.272-1.271-3.323c-0.031-1.272,0.191-3.184-0.5-4.339c-0.152-0.409-0.779-0.555-1.146-0.646c-0.701-0.175-1.387-0.467-1.938-0.944c-0.115,0.063-0.217,0.146-0.299,0.249c-0.918-0.868-1.264-2.023-1.846-3.076c-3.416,8.123,1.236,14.513,5.891,19.168c0.533,0.533,1.139,0.851,1.738,1.09c0.391-0.056,1.064,0.378,1.363,0.414c0.586,0.072,1.006-0.453,1.369,0.215c0.311,0.574,0.344,1.283,0.859,1.737c0.475,0.417,1.162,0.135,1.604,0.593c0.41,0.427,0.314,1.104,0.629,1.593c0.316,0.488,0.9,0.598,1.238,1.058c0.439,0.603,0.461,3.24,1.521,2.956l1.74-0.198c0.518,0.257-0.307,0.931-0.496,1.093c-0.363,0.283-0.369,0.763-0.201,1.156c0.4,0.949,0.854,1.85,0.664,2.918c-0.135,0.75-0.527,1.425-1.008,2.005c-0.217,0.263-0.217,0.33-0.131,0.423c0.035-0.018,0.074-0.036,0.109-0.054c-0.035,0.018-0.074,0.036-0.109,0.054c0.057,0.062,0.146,0.133,0.258,0.291c0.227,0.316,0.377,0.678,0.463,1.055c0.145,0.628,0.234,1.194,0.785,1.607c0.539,0.404,1.25,0.712,1.01,1.531c-0.063,0.249-0.203,0.475-0.406,0.684c-0.008,0.723-0.531,0.99-1.283,1.338c-0.26,0.765-0.092,1.602,1,1.411c1.328-0.232,2.992-1.656,4.07-0.099c0.398,0.548,0.541,1.234,0.555,1.9c0.016,0.759-0.357,1.652-0.008,2.368c0.662,1.35,2.727,1.328,3.432,2.742c0.994-0.473,1.988-0.945,2.98-1.418c0.723-0.343,1.588-1.371,2.309-0.409c0.355,0.477,0.59,1.076,0.863,1.602c0.207,0.4,0.857,0.779,1.195,1.079c0.328,0.292,0.963,0.12,1.383,0.108c0.174-0.004,0.506,0.053,0.666-0.017c0.313-0.448,0.74-0.877,1.303-0.974c0.482-0.083,0.875-0.097,1.244-0.471c0.295-0.298,0.434-0.695,0.732-0.991c1.217,1.129,2.164,2.639,3.68,3.408c0.639,0.324,1.021,0.133,1.646,0.175c0.592,0.04,0.76,0.097,1.238,0.444c0.67,0.465,1.574-0.625,1.938-1.044c0.768-0.853,1.396-0.517,2.236-0.049c0.07-0.326,0.078-1.128,0.311-1.343c0.203-0.188,0.49,0.082,0.699,0.114c0.418,0.065,0.516-0.393,0.531-0.71c-0.189-1.91-2.484-3.271-2.484-5.27c-0.127-0.94,1.188-0.167,1.607-0.276c0.637-0.166,0.068-1.474,0.27-1.95c0.25-0.599,1.072-0.086,1.406,0.132c0.916,0.599,1.771,1.442,2.932,1.497c1.416,0-0.357-1.355,0.793-1.74c0.998-0.399,1.916,1.43,2.639,0.4c0.357-0.509,0.662-1.067,0.992-1.593C205.939,129.39,205.277,128.726,204.382,128.594z");
    j = R.path("M163.964,126.165c0.002,0,0.002-0.001,0.004-0.002c0,0,0.002,0.001,0.002,0.001c1.188-1.286,1.619-2.783,0.928-4.415c-0.182-0.426-0.488-0.923-0.438-1.405c0.043-0.391,1.41-1.333,0.803-1.636l-1.74,0.198c-0.576,0.154-0.803-0.503-0.895-0.943c-0.154-0.748-0.207-1.575-0.754-2.167c-0.4-0.434-0.947-0.527-1.227-1.109c-0.307-0.649-0.189-1.532-1.098-1.677c-0.461-0.075-0.803-0.143-1.08-0.388c0.014,0.121,0.025,0.24,0.025,0.377c0-0.137-0.012-0.256-0.025-0.377c-0.133-0.119-0.254-0.277-0.361-0.504c-0.068-0.145-0.174-0.568-0.33-0.935c-0.285-0.24-0.637-0.41-1.031-0.558c-0.598-0.064-1.234-0.061-1.777-0.319c0.047-0.139,0.143-0.199,0.264-0.216c-0.6-0.239-1.205-0.557-1.738-1.09c-4.654-4.655-9.307-11.045-5.891-19.168c-0.098-0.177-0.199-0.351-0.314-0.52c-0.785-1.157-2.199-1.366-3.037-2.445c-0.438-0.562-0.641-1.212-0.943-1.843c-0.375-0.777-0.885-1.482-1.453-2.126c-0.643-0.728-1.348-1.4-2-2.12c-0.332-0.599,0.479-0.903,0.252-1.47c-0.168-0.426-0.584-0.771-0.89-1.099c-0.422-0.452-1.161-0.709-1.698-1.011c-0.503-0.229-0.593,0.138-0.86,0.449c-0.283,0.331-0.908,0.267-1.287,0.233c-0.969-0.087-2.504-0.309-2.824-1.428c-1.16,0.451-2.385,0.728-3.629,0.795l0.149,1.093c-0.61,0.306-1.427,0.509-1.688,1.193c-0.242,0.395-1.235,1.382-0.996,1.74l1.043,0.1c0.259-0.229,0.514-0.417,0.647-0.746l1.343,0.149c0.729,0.232,1.012,0.629,0.846,1.193c-0.42,0.839-0.678,1.654-0.995,2.535c-0.271,1.028-1.37,1.17-1.712,2.032c-0.365,0.922-0.116,2.337,0.482,3.114c0.551,0.713,1.252,0.831,1.385,1.84c0.148,1.128-0.104,2.282,0.028,3.426c0.138,1.191,0.378,2.201,0.068,3.395c-0.222,0.854-0.935,2.269,0.096,2.897l0.546,0.298c0.288,0.288-0.281,0.853-0.265,1.21c0.028,0.644,0.646,1.164,1.11,1.524c0.461,0.382,1.314,1.063,1.951,0.658c0.482-0.307,0.799-0.595,1.26-0.031c0.5,0.606,0.516,1.727,1.363,1.958c0.596,0.119,0.92,1.229,1.092,1.69l1.343-1.193c0.528-0.645,1.506,0.493,1.875,0.787c0.41,0.328,0.867,0.615,1.373,0.777c0.215,0.069,1.1,0.048,1.176,0.275c0.104,1.132,0.209,2.294-0.043,3.417c-0.174,0.771-0.922,1.461-1.385,2.084c-0.711,0.956-0.924,1.854-0.738,2.994c0.119,0.727,0.74,2.604,0.229,3.189l-1.441,1.094c-0.962,0.781,0.027,1.324,0.424,2.057c0.197,0.36-0.031,1.86,0.32,1.92c0.795-0.074,0.77,1.126,1.504,0.961c0.668-0.151,1.271-0.979,1.182-1.657c-0.133-0.563,0.1-0.597,0.695-0.1c0.766,0.719,1.088,1.866,1.48,2.797c0.213,0.511,0.191,1.121,0.453,1.604c0.111,0.213,0.357,0.373,0.504,0.571l-0.199,0.299c-0.371,0.479,0.785,0.893,1.045,0.995c0.527,0.202,0.809,0.888,0.846,1.413c0.049,0.706,0.1,1.411,0.148,2.117c0.002,0,0.002,0,0.002-0.001s0-0.001,0-0.002c0.004-0.002,0.008-0.003,0.014-0.005c2.639-1.4,5.285-2.802,7.924-4.202c0.035-0.018,0.068-0.036,0.102-0.054c1.34-0.861,2.803-1.645,4.289-2.379c0.07-0.083,0.143-0.179,0.246-0.317C160.982,126.68,162.369,125.967,163.964,126.165z");
    k = R.path("M165.367,130.169c-0.127,0.13-0.271,0.256-0.453,0.371l0.566-0.822c0.314-1.066-0.906-1.284-1.404-1.94c-0.652-0.854-0.461-1.959-1.262-2.772c-0.688,0.338-1.396,0.679-2.121,1.024c-0.361,0.192-0.723,0.384-1.086,0.576c-0.41,0.219-0.822,0.438-1.234,0.656c-0.357,0.189-0.709,1.014-0.945,1.354c-0.785,1.126-2.432,1.435-3.303,2.433c-0.594,0.679-0.723,1.5-0.934,2.341c-0.268,1.07-0.57,1.632-1.744,1.983c-1.232,0.309-1.902-0.017-2.004-0.977l-0.102-0.564l-1.492,1.645l-0.256-0.719c-0.273-0.956-0.904-1.214-1.891-0.777c-0.004,0.003-0.008,0.005-0.012,0.007c-0.035,0.787,0.084,1.541,0.359,2.261c0.4,0.927,1.777,1.18,2.623,1.543c-0.227,0.436-0.701,0.593-0.92,1.044c-0.158,0.323-0.152,0.693-0.326,1.007c-0.221,0.4-0.648,0.517-0.965,0.817c-0.543,0.514-0.58,1.414-1.143,1.856c-0.379,0.299-1.025,0.159-1.482,0.159c-0.154,0.832-0.248,1.35-0.984,1.9c-0.756,0.566-1.59,0.993-1.639,2.058c-0.096,1.179-0.789,1.666-1.541,2.452c-0.573,0.6-0.61,1.244-0.633,2.015c-0.017,0.525-0.142,1.094-0.136,1.603c0.006,0.727,0.589,1.293,1.035,1.812c0.656,0.764,1.334,1.479,1.844,2.348l-0.566-0.05c-0.686-0.138-0.787,0.376-0.309,1.542c0.275,0.788,0.666,1.114,1.182,0.976c0.734-0.497,1.457-1.025,2.213-1.492c0.283-0.176,0.629-0.365,0.977-0.346c0.438,0.021,0.598,0.492,0.924,0.714c0.445,0.304,1.678-0.292,1.492,0.56c-0.152,0.535-0.68,0.844-1.182,0.978c1.32,0.223,2.648,0.579,3.824,1.237c0.273,0.152,1.406,1.181,1.719,1.118c1.236-0.247,2.398-0.115,3.656-0.042c1.059,0.308,1.279-0.617,1.352-1.457c0.078-0.943,0.473-1.822,1.029-2.578c0.711-0.964,1.658-1.74,2.65-2.401c0.771-0.517,2.633-1.163,2.219-2.407c-0.234-0.582-0.832-0.959-1.365-1.231c-0.35-0.177-1.58-0.626-1.154-1.235l2.416,0.103c0.637-1.272,1.041-2.257,2.268-3.061c1.023-0.673,3.865-1.462,3.865-2.902v-0.463c1-0.535,1.488-0.38,1.723-0.003c0.426,0.688,0.511,1.134,1.491,0.622c0.645-0.339,3.021-3.22,1.599-3.599l-0.846-0.412c-0.068-0.103-0.021-0.308,0.117-0.616c-0.707-1.411-2.6-1.43-3.432-2.643c-0.43-0.629-0.18-1.312-0.123-2.006c0.068-0.813,0.008-1.687-0.418-2.403c-0.949-1.593-2.471-0.705-3.799-0.239c-0.477,0.167-1.217,0.355-1.574-0.136c-0.443-0.607-0.07-1.659,0.568-1.98c-0.104,0.154-0.182,0.329-0.246,0.506C164.458,131.24,164.966,130.625,165.367,130.169z");
    l = R.path("M188.035,174.812c2.049-0.535,2.617-4.119,4.941-3.854c0.447,0.105,0.891,0.229,1.35,0.287c0.459,0.057,1.393-0.295,1.666,0.158c0.313,1.252,0.576,2.398,1.686,3.213c1.168,0.854,2.098,0.773,3.451,0.738c0.484-0.711,1.07-2.059,2.025-2.125c0.938-0.104,1.965,0.57,2.717,1.039c1.098,0.699,2.227,1.367,3.414,1.902c0.889,0.402,1.863,0.779,2.855,0.754c0.877-0.021,1.615-0.469,2.477-0.582c1.111,1.223,2.463,1.604,4.1,1.729c0.418-0.102,0.826-0.299,1.08-0.654c0.293-0.414,0.225-0.943,0.68-1.254c0.48-0.328,0.662-0.582,0.662-1.205c0-0.375,0.068-0.943,0.543-0.986c2.041,0,4.342-1.42,4.189-3.762c-0.1-1.543-1.633-2.178-2.711-2.969c-0.992-0.726-1.922-1.751-1.922-3.053c-0.096-1.638,1.229-1.908,2.313-2.734c0.291-0.221,0.861-0.143,1.215-0.171c0.307-0.024,0.627,0.096,0.895,0.244c0.391,0.217,0.727,0.956,1.148,1.005c0.363,0.042,1.107-0.509,1.418-0.669c0.494-0.256,0.869-0.504,1.189-0.986c0.531-0.8,0.701-1.832,1.35-2.553c0.629-0.696,1.732-0.408,2.43-1.103c-1.363-2.272-1.313-5.374-1.582-7.955c-0.869,0.076-1.613,0.224-2.461,0.445c-0.26,0.067-0.52,0.135-0.777,0.204c-0.297,0.077-0.129,0.285-0.15,0.568c-0.063,0.844-0.748,1.151-1.521,1.103c-1.064-0.068-1.979-0.737-2.695-1.479c-0.33-0.361-0.764-0.713-1.279-0.726c-0.512-0.013-0.836,0.378-1.303,0.501c-0.869,0.229-2.15-0.776-1.68-1.709c0.338-0.668,1.629-1.186,1.297-2.119c-0.23-0.845-1.438-0.918-2.141-1.082c-0.955-0.223-1.988-0.528-2.314-1.572c-0.154-0.493-0.082-1.115-0.633-1.378c-0.527-0.251-0.75-0.367-0.756-1.036c-0.002-0.442,0.199-1.251-0.215-1.587c-0.59-0.477-0.348-0.907-0.34-1.619c0.016-1.676-1.691-2.78-2.768-3.833c-0.465-0.457-0.932-0.914-1.396-1.37c-0.154-0.151-0.963,0.168-1.225,0.183c-0.502,0.028-1.031-0.111-1.207-0.637l-0.396-0.642c-0.23-0.198-0.658-0.198-1.287,0c-0.277,0.444-0.547,0.897-0.838,1.334c-0.74,1.484-1.662-0.589-2.768-0.148c-1.145,0.382,0.617,1.729-0.791,1.729c-1.039-0.049-1.871-0.75-2.674-1.326c-0.334-0.238-1.35-0.979-1.635-0.294c-0.213,0.508,0.332,1.541-0.137,1.879c-0.42,0.303-1.865-0.668-1.729,0.333c0,1.104,0.877,2.114,1.352,3.046c0.373,0.73,0.746,1.461,1.119,2.191c-0.014,0.241-0.059,0.632-0.352,0.702c-0.283,0.069-0.635-0.329-0.871-0.109c-0.232,0.213-0.24,1.011-0.311,1.334c-0.676-0.376-1.256-0.798-1.969-0.199c-0.461,0.388-1.398,1.827-2.182,1.286c-0.475-0.344-0.643-0.401-1.229-0.441c-0.621-0.042-1.002,0.149-1.637-0.174c-1.506-0.764-2.447-2.265-3.656-3.387c-0.299,0.294-0.436,0.688-0.729,0.985c-0.498,0.503-1.123,0.318-1.693,0.629c-0.385,0.21-0.617,0.801-1.033,0.812c-0.451,0.012-0.9,0.023-1.354,0.035c-0.941,0.025-1.533-0.924-1.924-1.679c-0.357-0.689-0.635-1.009-1.223-1.523c-0.361-0.034-0.906,0.23-1.631,0.79c0.643,0.388,1.27,0.838,1.758,1.412c0.461,0.543,0.561,1.104,0.811,1.743c0.225,0.576,0.619,1.063,1.1,1.446c0.469,0.374,1.473,0.751,1.473,1.477l-0.445,0.889c-1.066,1.704,2.764,3.213,3.803,3.638c0.711,0.291,1.518,0.348,2.076,0.907c0.742,0.743,1.271,2.107,2.52,1.977l3.459-1.582c0.891-0.156,1.43,0.657,1.699,1.386c0.439,1.181-0.172,1.953-0.721,2.95c-0.436,0.792-0.795,1.63-0.904,2.533c-0.088,0.584-0.293,1.774-1.113,1.729c-0.582-0.083-1.129-0.222-1.432,0.445c-0.719,1.205,1.016,2.757,0.277,4.101c-0.385,0.697-1.158,1.034-1.684,1.607c-0.6,0.652-0.619,1.3-0.891,2.089c-0.465,1.354-1.986,2.332-3.387,2.332c-1.605,0-2.611,0.555-3.707,1.775c0.764,0.695,1.527,1.391,2.293,2.084c0.785,0.715,2.119,2.066,3.242,2.066C186.998,175.439,187.441,174.945,188.035,174.812C188.792,174.617,187.441,174.945,188.035,174.812z");
    m = R.path("M195.039,151.416c-0.365-0.596-0.828-0.845-1.393-0.746c-1.281,0.116-2.209,1.376-3.48,1.591c-1.184,0.124-1.695-1.078-2.369-1.816c-0.582-0.635-1.217-0.685-1.994-0.982c-1.082-0.414-5.193-1.997-4.088-3.765l0.447-0.894c0-0.643-0.811-1.004-1.246-1.311c-0.586-0.411-1.08-0.957-1.342-1.63c-0.213-0.546-0.287-1.062-0.646-1.546c-0.506-0.68-1.217-1.194-1.936-1.628l-3.031,1.442c-0.133,0.298-0.166,0.497-0.1,0.596l0.846,0.398c1.307,0.347-0.738,3.001-1.287,3.359c-0.715,0.468-1.174,0.493-1.455-0.299c-0.17-0.483-1.369-0.819-1.535-0.177v0.448c-0.23,1.317-2.736,2.056-3.684,2.635c-1.32,0.805-2.006,1.792-2.68,3.132l-2.336-0.099c-0.34,0.486,0.471,0.888,0.795,1.044c0.621,0.276,1.371,0.672,1.643,1.343c0.373,1.124-1.146,1.682-1.863,2.141c-0.996,0.636-1.953,1.38-2.693,2.308c-0.57,0.718-1.002,1.56-1.125,2.478c-0.109,0.828-0.168,1.961-1.328,1.623c-0.807-0.046-1.84-0.298-2.627-0.141c-0.455,0.091-0.814,0.284-1.203,0.018c-0.602-0.411-1.176-0.845-1.834-1.159c-1.508-0.715-3.574-1.36-5.199-0.629c-0.668,0.299-0.869,0.915-0.688,1.597c0.242,0.91-0.43,1.327-0.977,1.955c-0.033,0.099,0.148,0.214,0.545,0.348c0.758,0.206-0.186,1.332-0.182,1.748c0.008,0.672,1.582,0.247,1.275,1.086c-0.166,0.365-0.547,0.513-1.145,0.447c-0.707-0.054-0.479-0.739-0.906-0.935c-0.396-0.183-1.104,0.27-1.43,0.438c-0.674,0.3,0.684,3.523,0.883,4.136c0.479,1.469,1.473,3.254,0.16,4.564c1.293,1.059,2.188,1.689,2.686,1.889c0.896,0.398,0.996-0.258,1.641-0.588c0.604-0.307,1.215,0.205,1.801,0.188c0.998-0.029,1.996-0.061,2.996-0.09c0.73-0.021,1.422-0.885,1.701-1.449c0.643-1.303,2.729-3.1,4.24-3.23c1.451-0.076,2.711,2.273,2.869,3.479c0.127,0.969-0.057,1.779,0.563,2.639c0.229,0.254,0.615,0.443,0.895,0.645c0.797-0.244,1.35-0.416,2.07,0.17c0.453,0.369,1.688,2.352,2.455,1.967c0.762-0.457,1.604-0.824,2.496-0.922c0.711-0.078,1.432-0.113,2.061-0.5c0.58-0.354,0.738-0.963,1.102-1.5c0.465-0.691,1.09-1.207,1.811-1.613c1.227-0.697,2.635-0.975,3.92-1.527c1.701-0.732,2.389-2.453,3.832-3.496c0.914-0.658,1.789-0.629,2.854-0.629c1.334,0,2.842-1.377,3.115-2.639c0.152-0.706,0.313-1.259,0.814-1.811c0.58-0.634,1.471-0.997,1.797-1.838c0.484-1.248-1.055-2.788-0.383-3.905c0.307-0.672,0.854-0.531,1.439-0.448c1.195,0.066,1.189-2.402,1.49-3.161C194.767,154.464,196.154,153.274,195.039,151.416C194.673,150.819,195.634,152.41,195.039,151.416z");
    n = R.path("M148.107,137.247c-1.465-0.867-0.742-2.828-1.279-4.164c-0.344-0.851-2.168-3.7-3.344-2.448c-0.592,0.592-1.186,1.185-1.777,1.777c-0.297,0.297-1.916,1.738-1.453,0.708c0.254-0.764,0.822-0.926,1.375-1.386c0.211-0.176,0.422-0.352,0.633-0.527c0.314-0.263,0.303-0.653,0.775-0.872c0.877-0.472,1.018-1.274,0.99-2.181c-0.008-0.271-0.35-2.618,0.252-1.895c-0.297-0.734-0.502-1.581-1.094-2.138c-0.598-0.497-0.828-0.463-0.695,0.1c0.09,0.679-0.514,1.506-1.182,1.657c-0.734,0.166-0.709-1.035-1.502-0.961c-0.354-0.06-0.125-1.56-0.32-1.92c-0.397-0.733-1.389-1.276-0.426-2.057l1.441-1.094c0.5-0.573-0.084-2.312-0.199-3.023c-0.197-1.206-0.057-2.129,0.709-3.159c0.416-0.559,1.141-1.219,1.336-1.892c0.338-1.161,0.201-2.423,0.094-3.608c-0.078-0.233-0.721-0.164-0.914-0.205c-0.49-0.106-0.945-0.348-1.354-0.636c-0.412-0.29-1.584-1.699-2.158-0.998c-0.271,0.241-0.542,0.482-0.813,0.724c-0.463,0.412-0.476,0.388-0.535,1.002c-0.12,1.241-1.143,1.241-2.131,1.405c-0.538,0.163-0.42,0.75-0.474,1.181c-0.07,0.555-0.208,0.653-0.657,0.857c-0.44,0.201-0.765,1.255-1.007,1.69c-0.206-0.293-0.687-1.369-1.124-1.09c-0.339,0.216-0.376,0.795-0.814,0.904c-0.353,0.088-0.351-0.377-0.597-0.469c-0.566-0.212-1.137,3.507-2.536,3.44l-2.336-0.447c-0.464,0-0.68,0.199-0.647,0.596l0.348,2.138l-1.143,0.149c-1.027-0.232-1.127-0.05-0.298,0.547c0.867,0.507,4.049,1.878,3.342,3.322c-0.432,0.881-2.035,0.424-2.753,0.466c-0.809,0.046-1.619,0.093-2.428,0.139l0.048,0.398c-0.436,0.187-0.757,0.352-1.248,0.315c-0.538-0.041-0.445-0.563-0.888-0.809c-0.523-0.289-1.601-0.266-1.932-0.824c-0.13-0.22,0.153-0.595,0.191-0.82c0.068-0.411-0.014-0.823-0.2-1.193c-0.361-0.663-0.606-0.926-1.313-0.96c-0.565-0.028-1.131-0.056-1.697-0.083c-1.026-0.05-2.298-0.74-3.179-1.233c-0.912-0.511-1.446-0.659-2.362-0.159c0.094,0.325,0.26,0.626,0.339,0.954c0.185,0.766-0.077,1.421-0.196,2.164c-0.229,1.435,1.289,2.083,2.037,3.009c0.6,0.743,0.716,2.178-0.337,2.626c-0.665,0.283-1.623-0.226-2.291-0.401c-0.688,0.079-0.509,1.657-0.732,2.124c-0.131,0.273-0.335,0.173-0.571,0.289c-0.439,0.216-0.716,0.726-0.927,1.142c-0.334,0.658-0.832,1.751-0.049,2.301c0.847,0.594,1.611,0.897,1.782,2.049c0.314,2.755-1.572,6.25-4.244,7.217c-1.021,0.369-1.996,0.435-2.681,1.357c-0.426,0.572-0.852,1.145-1.277,1.717c0.564,0.461,1.187,0.917,1.934,0.736c0.707-0.17,1.414-0.34,2.121-0.51c1.407-0.338,2.813-0.677,4.219-1.016c0.357-0.086,0.895-0.976,1.143-1.253c0.727-0.814,1.361-1.251,2.466-1.509c1.04-0.242,2.73-0.59,3.677,0.121c0.663,0.258,1.191,0.232,1.889,0.199c1.814,0.064,1.905,2.501,2.867,3.612c1.002,1.158,2.334,1.959,3.596,2.8c0.426,0.497-2.092,0.831-2.503,0.999c-0.606,0.247-0.55,0.583,0.017,0.841c1.063,0.378,0.293,1.814,1.492,2.038c1.153,0.247,0.737,1.955,1.969,2.082c0.954,0.099,1.389,0.303,1.413,1.393c0.013,0.6,0.027,1.2,0.04,1.8c0.034,1.558,0.283,3.305,0.081,4.839c-0.071,0.532-0.345,1.091-0.171,1.624c0.193,0.591,0.648,0.976,1.008,1.457c0.343,0.458,0.687,0.915,1.03,1.372l-0.448,0.348c-1.007,0.319-0.193,1.778,0.112,2.317c0.635,1.125,0.842,2.096,0.019,3.172c-0.565,0.738-0.877,1.678-0.056,2.453c0.329,0.311,0.766,0.098,1.106,0.373c0.371,0.299,0.469,0.725,0.563,1.158c0.137,0.633,0.046,1.072,0.046,1.711c-0.113,1.363,1.368,2.271,2.379,2.852c1.469,0.844,2.998,1.049,4.631,1.326c-0.094-0.951,0.873-2.416,1.346-3.158c0.692-1.084,1.655-1.871,2.784-2.467c0.775-0.41,1.553-0.818,2.33-1.229c0.504-0.27,0.863-0.834,1.246-1.252c0.24-0.963-0.418-2.045-0.725-2.912c-0.26-0.73-0.518-1.465-0.777-2.197c-0.285-0.811-0.572-1.621-0.859-2.434c-0.316-0.897-0.174-1.418,0.324-2.25l-0.299,0.049c-1.088,0.652-1.479,0.201-1.107-0.952c0.438-1.358,0.43-2.373,0.313-3.771l0.498-0.05c0.859,0-0.445-2.014-0.596-2.287c-0.139-0.138-0.623,0.013-0.846-0.05c-0.1-0.33-0.209-0.629-0.35-0.944l-1.342-0.398c-0.548-0.648,0.153-1.111,0.62-1.493c0.728-0.594,0.516-1.056,0.348-1.854c-0.295-1.394-0.014-3.375,1.197-4.295c0.543-0.415,1.254-0.475,1.75-0.971c0.533-0.534,0.543-1.321,0.982-1.914c0.441-0.595,1.189-0.82,1.58-1.467c0.266-0.445,0.287-0.988,0.434-1.479c0.244-0.244,1.211,0.056,1.541,0.099c0.178-0.53,0.209-1.021,0.613-1.455c0.529-0.572,1.506-0.875,1.574-1.777C148.97,137.993,148.705,137.579,148.107,137.247C147.378,136.816,148.705,137.579,148.107,137.247z");
    o = R.path("M135.581,105.828c-1.042-0.286-0.783-2.229-1.914-2.309c-0.425-0.03-0.622,0.449-1.031,0.493c-0.6,0.064-1.201-0.415-1.629-0.77c-0.433-0.335-0.938-0.768-1.08-1.324c-0.108-0.424,0.517-1.127,0.234-1.41l-0.546-0.298c-0.918-0.56-0.431-1.783-0.188-2.571c0.364-1.186,0.237-2.173,0.068-3.37c-0.168-1.191,0.019-2.333-0.049-3.517c-0.067-1.184-0.779-1.283-1.409-2.1c-0.581-0.753-0.776-1.996-0.548-2.909c0.226-0.901,1.336-1.087,1.691-1.975c0.379-0.947,0.622-1.879,1.081-2.797c0.166-0.564-0.116-0.961-0.846-1.193l-1.342-0.149c-0.134,0.329-0.389,0.517-0.647,0.746l-1.043-0.1c-0.24-0.358,0.753-1.345,0.995-1.74c0.262-0.685,1.079-0.888,1.689-1.193l-0.149-1.093c-0.825,0.075-1.65,0.15-2.475,0.225c-0.345,0.031-0.823,0.103-1.055-0.22c-0.318-0.442-0.11-1.385-0.994-1.149c-0.724,0.136-0.702,1.083-0.647,1.641c0.049,0.78-0.132,1.566-0.663,2.16c-0.263,0.295-1.531,1.32-1.955,1.038c-0.14-0.093,0.491-1.086,0.579-1.309c-0.553,0.111-1.027,0.611-1.548,0.827c-0.524,0.217-1.377,0.162-1.734,0.645c-0.366,0.495-0.44,1.058-0.905,1.511c-0.546,0.532-1.24,0.904-1.929,1.214c-0.644,0.289-1.329,0.517-2.036,0.576c-0.483,0-1.022,0.158-0.944,0.746c0.104,0.736,0.733,0.603,1.016,1.094c0.219,0.381-0.258,1.578,0.227,1.74c0.647-0.576,1.227-1.313,2.208-1.292c0.699,0.015,1.398,0.03,2.097,0.045c0.477,0.011,1.021,0.625,1.391,0.896c0.547,0.399,1.91,1.048,1.712,1.843c-0.368,0.015-0.889,0.14-1.243,0.05c-0.415-0.185-0.779-0.469-1.099-0.789c-0.093-0.093-0.889-1.049-0.94-0.902l-0.048,0.995c0,1.009,1.128,1.49,1.938,1.74c1.063,0.336,2.136,0.962,2.486,2.088c-1.157-0.15-2.313-0.299-3.469-0.449c-0.668-0.086-1.337-0.173-2.005-0.259c-0.308-0.04-1.431-0.619-1.485-0.237c-0.121,0.502-0.207,0.985-0.444,1.429c-0.198,0.37,0.677,0.694,0.89,0.894c0.447,0.421,0.653,0.969,0.998,1.461c0.845,1.205,2.345,1.687,3.627,2.28c-1.471-0.112-2.723,0.272-4.125,0.597c-0.524-0.699-1.048-1.398-1.573-2.097c-0.333-0.443-0.707-0.867-0.902-1.394c-0.259-0.7-0.145-1.632-0.757-2.176c-0.781-0.049-1.604-0.186-2.386-0.149c-0.665,0.15-1.598,0.291-2.138-0.249c-0.331-0.287-0.523-0.585-0.895-0.845c-0.472-0.19-1.141,0.771-1.404,1.05c-0.697,0.739-1.678,0.958-2.574,0.441c-1.177-1.061-2.374-2.437-3.781-3.174c-1.511-0.791-3.603-0.942-5.267-1.3c-1.532-0.146-2.26,2.776-2.733,3.857c-0.309,0.709-0.606,1.375-1.086,1.996c-0.661,0.854-1.405,1.092-2.395,1.356c1.095,1.318-0.299,2.538-0.299,4.027c1.3,0.26,1.18,1.74,2.585,1.74c0.856-0.061,1.149-0.589,1.541-1.243c0.728-1.163,3.144,0.706,3.834,1.126c0.97,0.592,2.84,1.526,2.679,2.9c-0.15,0.67-1.166,0.833-1.659,1.113c-0.714,0.405-0.703,1.041-1.072,1.669c-0.786,1.334-3.199,2.133-3.036,3.93c0.162,1.627,2.445,0.026,2.983,1.492c0.657,1.883,2.37-0.315,3.531,0.149c0,1.38-0.315,3.251,0.798,4.303c0.941,0.889,2.523,0.99,3.689,0.56c0.736-0.272,1.265-0.829,1.947-1.189c0.663-0.35,1.094-0.145,1.766-0.207c1.309-0.12,1.893-2.033,2.599-2.906c0.202-0.249,0.521-0.659,0.883-0.659c0.746,0,0.92,0.463,1.394,0.908c0.429,0.404,1.023,0.402,1.457,0.745c0.407,0.321,0.422,0.922,0.38,1.391c-0.13,1.44-0.722,2.947-0.099,4.363c0.522,0.026,1.044,0.051,1.565,0.077c0.785,0.039,1.051,0.206,1.467,0.968c0.186,0.37,0.268,0.782,0.2,1.193c-0.038,0.225-0.321,0.6-0.191,0.82c0.331,0.558,1.409,0.535,1.932,0.824c0.443,0.245,0.351,0.768,0.888,0.809c0.491,0.037,0.812-0.128,1.248-0.315l-0.048-0.398c0.772-0.044,1.544-0.089,2.316-0.133c0.749-0.043,2.425,0.427,2.865-0.472c0.707-1.443-2.475-2.814-3.342-3.322c-0.829-0.597-0.729-0.78,0.298-0.547l1.143-0.149l-0.348-2.138c-0.033-0.397,0.183-0.596,0.647-0.596l2.336,0.447c1.399,0.067,1.97-3.652,2.536-3.44c0.246,0.092,0.244,0.558,0.597,0.469c0.438-0.109,0.475-0.688,0.814-0.904c0.437-0.279,0.918,0.797,1.124,1.09c0.242-0.435,0.566-1.489,1.007-1.69c0.449-0.205,0.587-0.303,0.657-0.857c0.054-0.431-0.063-1.019,0.474-1.181c1.282-0.212,2.229-0.352,2.138-1.938C136.276,106.457,135.912,105.894,135.581,105.828C135.215,105.728,135.912,105.894,135.581,105.828z");
    p = R.path("M238.875,178.619c-0.818-0.223-1.621-0.584-1.877-1.455c-0.283-0.965-0.174-1.914-0.729-2.807c-0.479-0.771-1.215-1.188-1.965-1.648c-0.16-0.098-1.043-0.811-1.111-0.811c0.514-0.105,1.023-0.213,1.537-0.32c0.457-0.096,1.633-0.814,1.525,0.074v1.234c0.381,0.227,1.172-1.611,1.297-1.828c0.363-0.631,0.975-0.984,0.332-1.68c-0.611-0.838-1.717-0.41-2.617-0.297c-0.625-0.033-0.643-0.246-0.049-0.645c1.102-0.66,2.697-0.633,3.951-0.789c0.566-0.172,0.164-0.662,0.051-1.001c-0.17-0.51,0.225-0.721,0.35-1.155c0.176-0.606-0.148-1.201-0.418-1.725c-0.236-0.461-0.475-0.922-0.711-1.384c-0.375-0.73-1.375-0.505-2.008-0.806c-0.783-0.374-1.328-1.729-1.762-2.423c-0.26-0.414-0.52-0.828-0.775-1.242c-0.168-0.266-0.502-0.424-0.701-0.687c-0.658,0.656-1.639,0.401-2.279,0.955c-0.721,0.625-0.896,1.688-1.363,2.481c-0.303,0.513-0.658,0.859-1.178,1.127c-0.344,0.178-1.162,0.794-1.566,0.747c-0.383-0.045-0.635-0.645-0.93-0.864c-0.258-0.191-0.688-0.419-1.02-0.393c-0.295,0.023-0.998-0.06-1.23,0.118c-1.1,0.838-2.488,1.143-2.393,2.794c0,1.301,0.93,2.329,1.922,3.053c1.08,0.791,2.613,1.426,2.713,2.969c0.15,2.342-2.148,3.76-4.189,3.76c-0.771,0.072-0.441,1.314-0.703,1.783c-0.158,0.287-0.469,0.334-0.68,0.563c-0.291,0.314-0.26,0.76-0.502,1.104c-0.193,0.273-0.484,0.459-0.799,0.572c-0.463,0.166-0.459,0.811-0.689,1.258c-0.436,0.846-1.352,1.359-1.564,2.314c-0.17,0.768,0.107,1.508-0.449,2.168c-0.488,0.578-1.666,0.764-1.734,1.645c-0.025,0.328,0.148,0.625,0.107,0.959c-0.064,0.5-0.41,0.66-0.73,0.973c-0.533,0.523,1.076,1.229,1.076,1.734l-0.248,0.494c-0.396,0.666,2.09,1.678,2.42,1.742c1.158,0.23,2.592,0.584,3.361,1.566c0.129,0.154,0.293,0.604,0.49,0.652c0.32,0.082,0.77,0.096,1.064,0.219c0.49,0.199,0.357,0.953,0.355,1.352c-0.006,0.658,0.295,1.205,0.955,1.385c0.682,0.145,1.287-0.102,1.646-0.701c0.404-0.674,0.238-1.875,0.773-2.41c0.352-0.303,0.904,0.227,1.137,0.445c0.439,0.422,0.971,0.822,1.588,0.924c0.734,0.121,1.365-0.336,1.982-0.66c0.359-0.189,1.109-0.373,1.516-0.277c0.67,0.158,1.055,0.93,1.436,1.443l3.756-0.146c-0.473-1.488-1.229-3.584-0.65-5.148c0.266-0.727-0.104-1.887-0.186-2.66c-1.285-0.77-6.316-2.168-3.908-4.443c0.264-0.229-0.313-0.461-1.729-0.691l1.336-0.146c0.295-0.166,0.049-0.346-0.742-0.543c2.08,0,3.102-3.084,5.137-2.717c1.574,0.213,0.916,2.188,2.324,2.42c0.816-0.129,1.023-0.229,1.629-0.791C240.787,179.589,240.259,179.013,238.875,178.619C238.019,178.386,240.259,179.013,238.875,178.619z");
    q = R.path("M215.457,184.349c0.451-0.217,0.871-0.539,1.084-1.002c0.264-0.57,0.068-1.186,0.201-1.781c0.154-0.691,0.637-1.045,1.064-1.561c0.463-0.557,0.764-1.225,0.908-1.93c-1.637-0.127-2.988-0.508-4.1-1.73c-0.766,0.104-1.41,0.482-2.176,0.564c-1.01,0.105-2.006-0.236-2.918-0.629c-1.162-0.5-2.262-1.139-3.332-1.807c-0.84-0.523-1.979-1.357-3.039-1.242c-0.957,0.066-1.541,1.414-2.023,2.125c-1.252,0.033-2.115,0.129-3.229-0.586c-1.258-0.813-1.568-2.01-1.908-3.365c-0.289-0.48-1.051-0.082-1.498-0.139c-0.518-0.064-1.01-0.188-1.518-0.307c-1.576-0.182-2.453,1.682-3.289,2.664c-0.963,1.135-2.465,1.168-2.986,2.672c-0.264,1.549,0.033,2.406,0.889,2.57c1.094,0.164,1.457,0.303,1.797,1.451c0.16,0.541,0.467,1.033,0.945,1.346c0.428,0.279,1.389,0.479,1.457,1.104c0,0.584-0.83,0.707-1.229,0.861c-0.619,0.238-0.357,0.66-0.309,1.143c0.063,0.568-0.684,0.623-1.045,0.777c-0.689,0.295-0.139,0.973-0.021,1.426c0.328,1.287-2.275,1.408-2.398,2.494c-0.072,0.625,1.623,0.654,2.039,0.709c1.32,0.232-0.338,1.91-0.822,2.211c-0.795,0.496-1.709,0.48-2.609,0.438c-1.342-0.063-2.494-0.197-3.783,0.17c0.76,0.482,1.613,0.764,2.381,1.234c0.521,0.32,0.416,0.266,1.072,0.148c0.5-0.086,0.994,0.094,1.094,0.643l-0.148,0.742c-0.422,0.141-0.75,0.152-1.164,0.23c-0.611,0.117-0.447,0.971-0.314,1.385c0.482,1.512,1.844,2.494,2.281,4.047c0.467,1.646,0.227,3.461-0.539,4.982c-0.43,0.852-2.035,2.334-1.842,3.385c0,0.789,1.695,1.941,2.35,2.15c0.912,0.291,3.012-0.275,3.479,0.813c0.391,1.209,0.781,2.416,1.17,3.623c0.563,1.74,0.461,3.396,0.264,5.223c0.697-0.35,1.447-0.033,2.025,0.396c0.316,0.098,0.766,0.031,1.098,0.047c0.143,0.006,0.105-0.303,0.348-0.246c0.336,0.08,0.512,0.488,0.766,0.682c0.77,0.598,0.797-0.828,1.398-0.729c1.043,0.438,1.715,0.447,2.568-0.443c0.529-0.559,0.996-1.219,1.186-1.977c0.156-0.688,0.92-0.73,1.105-1.314c0.428-1.344-0.162-2.389-1.01-3.41c-0.688-0.824-2.25-2.004-1.432-3.23c0.688-0.906,1.375-1.813,2.063-2.723c0.803-1.061,1.1-2.086,1.1-3.404c0.068-0.807,2.674-1.215,3.197-1.348c0.639-0.156,3.662-0.684,3.475-1.814l-0.053-0.643c0.373-0.863,3.607-0.766,2.57-2.322l-0.445-0.789c-0.127-0.641,0.768-0.771,1.082-1.17c0.199-0.252,0.305-0.563,0.342-0.879c0.039-0.318-0.186-1.02,0.061-1.264c0.65-0.102,1.623,0.004,2.059-0.551c0.734-0.936,0.4-2.666,1.646-3.254c-1.582-0.791-2.271-1.35-2.076-1.68l0.248-0.494c0-0.48-0.744-0.816-1.004-1.152c-0.352-0.455-0.008-0.564,0.301-0.865c0.459-0.445,0.338-0.891,0.258-1.447C214.48,184.99,214.996,184.589,215.457,184.349C216.345,183.921,214.699,184.744,215.457,184.349z");
    r = R.path("M195.039,151.416c-0.365-0.596-0.828-0.845-1.393-0.746c-1.281,0.116-2.209,1.376-3.48,1.591c-1.184,0.124-1.695-1.078-2.369-1.816c-0.582-0.635-1.217-0.685-1.994-0.982c-1.082-0.414-5.193-1.997-4.088-3.765l0.447-0.894c0-0.643-0.811-1.004-1.246-1.311c-0.586-0.411-1.08-0.957-1.342-1.63c-0.213-0.546-0.287-1.062-0.646-1.546c-0.506-0.68-1.217-1.194-1.936-1.628l-3.031,1.442c-0.133,0.298-0.166,0.497-0.1,0.596l0.846,0.398c1.307,0.347-0.738,3.001-1.287,3.359c-0.715,0.468-1.174,0.493-1.455-0.299c-0.17-0.483-1.369-0.819-1.535-0.177v0.448c-0.23,1.317-2.736,2.056-3.684,2.635c-1.32,0.805-2.006,1.792-2.68,3.132l-2.336-0.099c-0.34,0.486,0.471,0.888,0.795,1.044c0.621,0.276,1.371,0.672,1.643,1.343c0.373,1.124-1.146,1.682-1.863,2.141c-0.996,0.636-1.953,1.38-2.693,2.308c-0.57,0.718-1.002,1.56-1.125,2.478c-0.109,0.828-0.168,1.961-1.328,1.623c-0.807-0.046-1.84-0.298-2.627-0.141c-0.455,0.091-0.814,0.284-1.203,0.018c-0.602-0.411-1.176-0.845-1.834-1.159c-1.508-0.715-3.574-1.36-5.199-0.629c-0.668,0.299-0.869,0.915-0.688,1.597c0.242,0.91-0.43,1.327-0.977,1.955c-0.033,0.099,0.148,0.214,0.545,0.348c0.758,0.206-0.186,1.332-0.182,1.748c0.008,0.672,1.582,0.247,1.275,1.086c-0.166,0.365-0.547,0.513-1.145,0.447c-0.707-0.054-0.479-0.739-0.906-0.935c-0.396-0.183-1.104,0.27-1.43,0.438c-0.674,0.3,0.684,3.523,0.883,4.136c0.479,1.469,1.473,3.254,0.16,4.564c1.293,1.059,2.188,1.689,2.686,1.889c0.896,0.398,0.996-0.258,1.641-0.588c0.604-0.307,1.215,0.205,1.801,0.188c0.998-0.029,1.996-0.061,2.996-0.09c0.73-0.021,1.422-0.885,1.701-1.449c0.643-1.303,2.729-3.1,4.24-3.23c1.451-0.076,2.711,2.273,2.869,3.479c0.127,0.969-0.057,1.779,0.563,2.639c0.229,0.254,0.615,0.443,0.895,0.645c0.797-0.244,1.35-0.416,2.07,0.17c0.453,0.369,1.688,2.352,2.455,1.967c0.762-0.457,1.604-0.824,2.496-0.922c0.711-0.078,1.432-0.113,2.061-0.5c0.58-0.354,0.738-0.963,1.102-1.5c0.465-0.691,1.09-1.207,1.811-1.613c1.227-0.697,2.635-0.975,3.92-1.527c1.701-0.732,2.389-2.453,3.832-3.496c0.914-0.658,1.789-0.629,2.854-0.629c1.334,0,2.842-1.377,3.115-2.639c0.152-0.706,0.313-1.259,0.814-1.811c0.58-0.634,1.471-0.997,1.797-1.838c0.484-1.248-1.055-2.788-0.383-3.905c0.307-0.672,0.854-0.531,1.439-0.448c1.195,0.066,1.189-2.402,1.49-3.161C194.767,154.464,196.154,153.274,195.039,151.416C194.673,150.819,195.634,152.41,195.039,151.416z");
    s = R.path("M113.755,112.987c-0.417-0.104-0.824-0.285-1.141-0.583c-0.381-0.358-0.536-0.792-1.111-0.886c-0.79-0.129-1.29,0.759-1.657,1.324c-0.501,0.77-1.033,2.121-2.107,2.22c-0.447,0.042-0.813-0.141-1.27-0.002c-0.613,0.187-1.065,0.61-1.585,0.958c-1.565,1.045-4.399,0.993-5.149-1.046c-0.378-1.03-0.196-2.3-0.196-3.376c-1.088-0.436-2.671,1.586-3.432,0.084c-0.338-0.668-0.634-1.051-1.464-0.97c-0.698,0.069-1.526,0.168-1.618-0.755c-0.155-1.71,2.081-2.559,2.919-3.75c0.397-0.564,0.38-1.261,0.973-1.708c0.518-0.39,1.707-0.502,1.875-1.254c0.153-1.298-1.502-2.169-2.426-2.744c-0.716-0.445-3.332-2.488-4.087-1.283c-0.392,0.654-0.685,1.182-1.541,1.243c-1.405,0-1.285-1.479-2.585-1.74c-0.033,0.63-0.182,1.127-0.447,1.491c-0.37,0.463-0.399-1.832-0.401-1.963c-0.012-0.754,0.093-2.231-0.544-2.81c-0.494-0.741-2.905-1.144-2.241-2.362c0.339-0.623,0.77-1.213,1.146-1.814c0.034-0.331-0.297-0.331-0.994,0c-0.637,0.276-1.073,0.174-0.75-0.574c0.232-0.542,1.847-2.396,1.397-2.955c-0.235-0.33-1.8,0.393-2.237,0.497c-0.099-0.199,0.018-0.696,0.348-1.491c0.435-1.466-3.069-2.653-4.025-3.132c-1.034-0.647-1.99,1.102-2.486,1.789c-0.319,0.265-1.231-1.18-1.743-1.346c-0.915-0.296-1.976,0.038-2.854-0.458c-0.33-0.187-0.808-0.131-1.184-0.156c-0.668-0.046-1.336-0.092-2.004-0.138c-0.878-0.06-1.583-0.527-2.375-0.908c-0.943-0.454-1.697-0.39-2.76-0.408c-1.352-0.024-3.048,0.262-4.216-0.556c-0.505-0.354-1.01-0.707-1.515-1.06c-0.113-0.079-0.224-0.167-0.341-0.239c-0.548-0.449-1.036-0.01-1.529-0.273c-0.354-0.189-0.251-0.379-0.659-0.357c-0.176,0.009-0.483-0.036-0.646,0.034c-0.339,0.378-0.746,0.724-1.232,0.893c-0.458,0.159-0.931,0.04-1.237,0.499c-0.201,0.301-0.359,0.779-0.228,1.137c0.168,0.456,0.736,0.443,1.106,0.628c0.489,0.245,0.953,0.616,1.542,0.572c-0.413,0.67-0.251,1.101,0,1.79c-1.051-0.836-2.498-0.794-3.472,0.16c-0.582,0.569-0.881,1.463-0.81,2.267c0.016,0.18,0.242,0.788-0.094,0.855c-0.308,0.043-0.221,0.398-0.149,0.597c0.363,1.356-3.897,1.078-4.573,0.447c-0.431-0.365-0.464-0.563-0.099-0.597c0.792-0.066,1.555-0.006,2.236-0.422c0.896-0.548,1.904-1.32,2.188-2.362c0.215-0.947-0.255-0.641-0.853-0.715c-0.179-0.022-0.476,0-0.639-0.08c-0.2-0.402-0.641-0.582-1.059-0.657c-1.677-0.306-1.815-1.694-2.074-3.171c-0.206-0.552-0.782,0.142-1.015,0.318c-0.53,0.401-1.097,0.755-1.69,1.055c-0.928,0.469-2.114,0.732-2.663,1.709c-0.478,0.695-0.124,1.075,0.1,1.74c-0.154,0.012-1.169,0.025-0.994,0.199c0.628,0.393,2.47,1.24,1.839,2.188c-0.421,0.261-1.177,0.542-1.412,0.995c-0.303,0.586-0.333,1.266-0.525,1.889c-0.232,0.756-0.625,1.455-1.096,2.088c-1.116,1.397-1.238,3.244-2.137,4.773c-0.44,0.966,2.453,1.547,3.047,1.341c0.517-0.178,0.877-0.869,0.614-1.38c-0.25-0.486-1.403-0.657-1.125-1.354c0.132-0.725,0.769,0.033,1.02-0.311c0.375-0.514-0.026-1.362,0.771-1.628c0.413-0.155-0.674-0.708-0.746-0.746c-0.542-0.295-0.622-0.667-0.012-0.93c0.62-0.267,1.263-0.47,1.702-1.02c0.159-0.2,0.462-1.402,0.745-1.331c0.788-0.131,0.729,1.388,1.442,0.199c0.166-0.379,0.2-0.798,0.017-1.178c-0.168-0.348-0.621-0.818-0.165-1.159l0.845-0.1c0.359,0.49,0.718,0.98,1.078,1.47c0.224,0.305,0.599,0.514,0.94,0.657c0.201,0.084,1.561,0.314,1.561,0.459c-0.941,1.129-1.668,0.902-3.032,0.795l2.188,2.635c0.457,0.765-1.72-0.125-1.255,1.012c0.19,0.467,0.611,1.125,1.171,1.181c0.676,0.068,0.982,0.014,1.327,0.741c0.375,0.91-0.882,0.696-1.427,0.715c-0.717,0.027-1.435,0.053-2.151,0.08c-1.326,0.371-0.409,0.906-0.395,1.82c0.012,0.76-0.573,2.539,0.692,2.605l2.387-0.447c0.872-0.516,0.885-1.094,0.796-1.989l0.347,0.249c0.971,0.748,0.702-1.541,1.441-1.541c0.69,0,0.784,1.124,0.895,1.591c0,0.821-0.975,0.565-1.045,1.349c-0.043,0.487,0.115,1.038,0.15,1.535c-0.246-0.049-1.69-0.464-1.69-0.448c0.032,0.451-0.147,0.858-0.497,1.144c-0.265,0.176-0.743,0.506-0.646,0.895c0.223,0.5,0.288,1.017,0.466,1.529c0.158,0.451,0.632,0.261,0.736,0.653c0.135,0.511,0.072,1.094,0.687,1.298c0.431-0.101,1.123-0.487,1.342-0.05c0.2,0.737-0.656,1.373-0.746,2.138c-0.152,0.966,0.686,0.954,1.374,1.125c0.759,0.189,1.297,0.713,1.435,1.492c0.206,1.17-0.297,2.47-0.572,3.597c-0.165,0.331-0.348,0.132-0.546-0.597c-0.151-0.45-0.22-0.994,0.1-1.392c0.418-0.539-0.058-1.146-0.398-1.58c-0.491-0.627-0.837-0.711-1.56-0.798c-1.116-0.134-3.124-0.575-3.611,0.887c-0.232,0.53-0.116,0.845,0.349,0.945c-0.364,0.627-0.963,1.255-1.219,1.914c-0.228,0.586,0.175,1.065,0.079,1.654c-0.08,0.487-0.996,1.163-0.899,1.552c0.515,0.377,0.697,0.543,1.307,0.583c0.901,0.059,1.803,0.117,2.705,0.176c2.032,0.132,3.249-1.289,4.439-2.698c0.429,0.334,0.796,0.826,1.333,0.974c0.888,0.245,1.808-0.231,2.734,0.021c0.814,0.222,1.467,0.917,2.327,0.993c0.378,0.034,0.764,0.039,1.143,0.063c0.447,0.029,0.895,0.058,1.342,0.086c0.201,0.013,0.366-0.172,0.319,0.201c-0.147,0.494,0.213,0.418,0.538,0.522c0.335,0.107,0.083,0.459,0.059,0.66c-0.053,0.438,0.653,0.701,0.248,1.104c-0.465,0.561,1.251,1.39,0.2,1.69c-0.857,0.061-1.501,0.076-2.337-0.1c-0.519,0,0.022,1.058-0.091,1.317c-0.235,0.537-1.339,0.102-0.604,0.97c0.193,0.263,0.579,0.722,0.944,0.447c0.344-0.342,0.5,0.453,0.629,0.637c0.533,0.763,1.558-0.39,1.957,0.408c0.198,0.298,0.165,0.463-0.1,0.497c-0.366,0.061-0.72,0.193-1.016,0.419c-0.32,0.245-0.504,0.667-0.917,0.777c-0.804,0.215-1.918-0.687-2.717-0.865c-1.783-0.399-3.301,1.243-5.072,0.979c-0.9-0.134-1.56-0.999-2.473-1c-0.388,0-0.777,0.261-1.146,0.367c-0.5,0.144-1.018,0.227-1.537,0.272c-1.076,0.093-2.142,0.167-3.218,0.292c-0.704,0.234-0.394,1.312-0.351,1.854c0.042,0.517-0.261,1.208-0.375,1.713c-0.212,0.943-0.849,1.792-0.706,2.808c0.072,0.511,0.229,0.999-0.06,1.48c-0.35,0.49-0.617,1.163-0.099,1.641c0.648,0.705,1.208,1.649,1.925,2.251c0.864,0.725,1.927,1.293,2.874,1.904c0.381,0.247,0.736,0.545,1.119,0.783c0.483,0.299,0.953,0.226,1.493,0.213c0.574-0.014,3.327-0.238,3.327,0.518c0.464-0.497,0.828-0.762,1.094-0.796c1.206,0.303,2.127,0.733,3.429,0.548c0.696-0.067,1.392-0.133,2.088-0.199c0.513,0.771,0.453,1.671,1.076,2.409c1.073,1.27,2.98,1.979,4.583,2.21c1.749,0.252,3.473-0.184,5.23,0.004c1.307,0.696-1.449,1.914-0.448,2.834c0.917,0.144,1.12,0.053,1.94-0.398c1.705-0.925,2.045,2.757,2.381,3.712c0.549,1.56,1.366,2.946,3.101,3.334c1.177,0.264,4.52,0.192,4.757-1.478c0.238-2.053,3.126-1.583,3.929-3.182c0.408-0.902-0.081-1.906-0.008-2.84c0.093-1.186,1.232-1.463,2.047-2.049c0.96-0.69,1.458-1.662,1.849-2.746c0.319-0.885,0.916-2.233,2.052-2.233c0.514,0,0.689,0.435,1.172,0.43c0.623-0.007,1.245-0.014,1.868-0.021c1.116-0.012,2.232-0.024,3.349-0.036c0.398-0.536,0.796-1.072,1.195-1.607c0.664-0.892,1.481-1.081,2.526-1.389c2.813-0.831,4.802-4.481,4.482-7.295c-0.136-0.917-0.756-1.581-1.591-1.939c-1.003-0.478-0.52-1.669-0.142-2.411c0.191-0.378,0.424-0.789,0.773-1.046c0.185-0.137,0.511-0.095,0.646-0.257c0.4-0.479,0.047-2.164,0.812-2.251c0.625,0.165,1.471,0.598,2.106,0.46c1.075-0.233,1.185-1.693,0.685-2.462c-0.674-1.035-2.238-1.566-2.22-2.996c0.01-0.726,0.359-1.371,0.267-2.121c-0.055-0.436-0.268-0.816-0.39-1.233c0.74-0.403,1.324-0.496,2.088,0c1.063,0.638,2.231,1.084,3.43,1.392c-0.453-1.03-0.284-2.287-0.078-3.354C114.421,114.789,114.814,113.303,113.755,112.987C113.093,112.821,114.419,113.185,113.755,112.987z");
    t = R.path("M130.807,179.503c-0.69-0.475-1.441-1.152-1.494-2.049c-0.025-0.428,0.129-0.857,0.102-1.281c-0.022-0.348-0.128-0.816-0.249-1.143c-0.151-0.361-0.403-0.797-0.835-0.85c-0.376-0.049-0.625-0.023-0.872-0.373c-1.12-1.588,0.678-2.15,0.782-3.594c0.074-1.021-0.657-1.799-1.01-2.697c-0.196-0.498-0.375-1.271,0.295-1.485l0.448-0.348c-0.329-0.438-0.658-0.877-0.987-1.315c-0.278-0.37-0.616-0.678-0.853-1.083c-0.361-0.62-0.205-1.024-0.084-1.694c0.296-1.633,0.013-3.529-0.024-5.199c-0.021-0.935,0.308-3.322-1.185-3.187c-1.441,0.074-0.995-1.572-2.046-2.027c-0.414-0.179-0.855-0.191-0.964-0.724c-0.118-0.575-0.047-1.136-0.719-1.375c-0.567-0.258-0.623-0.594-0.017-0.841c0.411-0.167,2.929-0.501,2.503-0.999c-1.187-0.791-2.427-1.544-3.409-2.592c-0.689-0.736-0.932-1.48-1.302-2.383c-0.312-0.76-0.881-1.406-1.751-1.437c-0.876,0.042-1.392-0.031-2.194-0.372c-1.333-0.565-3.422-0.126-4.666,0.496c-0.809,0.404-1.37,1.284-1.964,1.95c-0.387,0.433-0.64,0.438-1.216,0.576c-1.825,0.439-3.65,0.878-5.475,1.318c-0.199,0.048-0.362,0.09-0.573,0.046c-0.306-0.063-0.588-0.227-0.845-0.396c-0.178-0.12-0.35-0.248-0.516-0.385c-0.328,0.154-0.661,0.299-0.999,0.43c-1.181,0.457-2.835,0.95-3.973,0.116c-0.331-0.292-0.45-0.487-0.882-0.483c-0.521,0.006-1.041,0.011-1.562,0.017c-0.681,0.628-0.907,1.558-1.24,2.384c-0.377,0.934-1,1.75-1.855,2.292c-0.786,0.498-1.741,0.819-1.826,1.898c-0.073,0.935,0.416,1.938,0.008,2.84c-0.791,1.575-3.448,1.106-3.894,2.987c-0.412,1.734-3.066,1.963-4.539,1.722c-1.753-0.287-2.683-1.566-3.263-3.13c-0.372-1.003-0.595-2.042-0.912-3.061c-0.235-0.753-0.75-1.344-1.561-0.904c-0.82,0.451-1.022,0.542-1.94,0.398c-1-0.92,1.755-2.138,0.448-2.834c-1.555-0.167-3.021,0.167-4.572,0.065c-1.557-0.102-3.106-0.646-4.393-1.529c-0.518-0.356-0.985-0.81-1.261-1.382c-0.201-0.417-0.102-1.085-0.414-1.404c-1.929,0.021-3.859,0.042-5.788,0.063c-1.764,0.02-3.54,0.294-5.285-0.021c-1.156-0.208-1.872-0.699-2.797-1.36c-0.83-0.592-2.212-1.802-3.062-0.757c-1.545,1.899-3.54,0.792-5.278-0.118c-0.849-0.444-1.849-0.445-2.795-0.666c-1.185-0.526-0.017,1.955,0.255,2.283c0.74,0.892,1.777,1.307,2.828,1.694c-0.237,0.271-1.409,0.393-1.343,0.795c-0.065,0.331,1.186,0.182,1.308,0.179c0.547-0.017,0.764,0.313,0.161,0.512c-0.51,0.168-1.305,0.289-1.802,0.032c-0.58-0.3-0.601-1.127-1.04-1.583c-0.903-0.937-3.315-1.325-4.556-1.122c-0.64,0.105-0.296,0.593,0.012,0.888c0.051,0.048,1.021,1.035,0.696,0.994c-1.545-0.565-3.268-1.503-4.823-0.448c-0.33,0.166-0.447,0.332-0.348,0.498l2.536,0.646c0.135,1.084-0.037,2.134,0.649,3.08c0.444,0.613,1.001,0.988,1.709,1.238c0.828,0.292,1.723,0.433,2.215,1.25c0.165,0.298,0.132,0.431-0.099,0.397c-0.439-0.207-2.185-1.248-2.202-0.241c-0.024,1.333,1.562,1.568,2.549,1.832c-0.647,0.444-1.072,0.782-1.492,1.491c-0.711,0.913-2.374-1.652-3.182-1.491c-0.484-0.08-0.345,0.919-0.784,1.006c-0.486,0.097-0.983-0.572-1.105,0.286c-0.227,0.901-1.089,1.583-1.591,2.336c0.455-0.126,0.976-0.349,1.446-0.378c0.917-0.059,0.949,1.043,1.778,1.079c0.875,0.039,1.95-0.633,2.741-0.95c0.506-0.126,1.292,0.579,1.563,0.921c0.515,0.65-0.239,1.288,0.215,1.946c0.404,0.584,1.268,1.115,2,1.011c0.872-0.087,0.964,1.22,1.69,1.491c0.567,0.162-0.066-1.243,0.448-1.243l0.646,0.049c1.817,0.261,0.738-3.054,1.989-3.679c0.896-0.373,0.972,1.068,1.938,0.696c0.598-0.199,0.505-1.048,1.11-0.961c0.29,0.042,1.692,0.411,1.126,0.912l-2.485,0.746c-0.53,0.298-0.713,0.779-0.547,1.442c0.133,0.629,0.497,0.812,1.094,0.547c0.722-0.691,1.653-2.025,2.783-1.74l-0.347,0.249c-0.907,0.711,0.916,0.635,1.085,1.29c0.27,1.038-0.981,1.412-1.742,1.544c-1.047,0.181-2.116,0.269-3.171,0.398c-1.042,0.348-0.028,1.788-0.605,2.528c-0.328,0.421-0.843,0.729-0.638,1.349c0.148,0.471,0.424,0.975,0.944,1.094c0.756,0.107,0.773-0.684,1.094-1.145c0.345,0.574,0.675,1.234,1.298,1.553c0.326,0.166,0.689,0.168,1.013,0.354c0.544,0.311,0.917,0.791,1.386,1.188c0.613,0.521,0.639-0.527,1.298-0.582c0.397-0.031,0.81,0.127,1.187-0.064c0.459-0.23,0.388-0.764,0.563-1.172c0.214-0.498,0.77-0.891,1.081-1.365c0.334-0.511,0.587-1.289,0.998-1.705c0.321-0.325,0.936-0.579,1.323-0.849c0.591-0.411,0.786-1.283,1.637-1.283c1.354-0.099-0.213,2.994,0.249,3.531c0.304,0.38-1.542,0.13-1.542,0.546c-0.144,0.719,3.728,1.34,3.282,0c-0.299-0.729-0.398-1.442-0.299-2.139c0.077-0.965,0.624-1.248,1.518-1.241c0.091,0,1.78,0.015,1.743,0.166c-0.07,0.286-1.502,0.372-1.733,0.466c-0.717,0.291-1.018,1.212-0.636,1.895c0.262,0.47,1.555,0.316,1.357,0.976c-0.267,0.887-1.348,1.15-2.151,1.121c-2.565-0.24-0.324,2.801-0.708,3.961c-0.34,1.023-1.631,1.514-1.684,2.668c-0.044,0.969,0.758,1.768,1.697,1.375c1.379-0.518,1.27-2.008,1.392-3.23c0.176-0.412,1.649-0.617,1.54-0.35c-0.413,0.537-1.07,1.176-1.013,1.9c0.03,0.375,0.268,0.551,0.268,0.934c0,0.406-0.041,0.721,0.22,1.07c1.067,1.438,2.726,1.215,4.306,1.152c2.791-0.109,5.583-0.221,8.374-0.328c2.066-0.082,3.955,0.016,6.022,0.205c1.021,0.094,2.091-0.189,3.101-0.326c0.376-0.051,0.966-0.254,1.343-0.182c0.97,0.967,2.105-0.025,2.979-0.559c0.787-0.477,2.09,0.121,2.967,0.232c0.428,0.055,0.855,0.109,1.283,0.164c0.638,0.082,1.293-0.482,2.019-0.336c0.497,0.064,0.546,0.348,0.149,0.844c-0.391,0.391-0.975,0.426-1.491,0.348c-0.688-0.111-0.727,0.09-1.029,0.574c-0.206,0.328-1.276,0.666-1.23,1.021c0.027,0.215,0.221,0.27,0.116,0.52c-0.157,0.375-0.438,0.475,0.006,0.818c0.452,0.379-1.363,0.479-0.32,1.17c0.498,0.33,1.067,0.535,1.612,0.77l-0.049-0.199c-0.591-0.646,1.345-0.568,1.587-0.609c0.895-0.15,1.507-1.217,2.39-1.082c0.98,0.186-1.143,1.35-1.352,1.492c-0.569,0.389-1.382,0.896-1.589,1.605c-0.395,1.346,0.188,2.973,0.456,4.311c-0.061,0.426-0.946-0.496-1.078-0.613c-0.317-0.283-0.652-0.498-1.01-0.729c-0.632-0.568,0.941-1.74-0.1-1.74c-0.62,0.025-1.24,0.051-1.861,0.076c-0.297,0.012-1.865-0.021-1.719,0.271l2.288,1.689c0.433,0.348,0.026,0.477-0.344,0.445c-0.57-0.045-1.118-0.354-1.595-0.645c-0.457,2.428,0.594,3.998,2.61,5.207c0.994,0.596,1.663,1.785,2.758,2.15c1.122,0.449,0.458,2.154,0.781,3.092c0.144,0.418,0.509,0.941,0.217,1.381c-0.246,0.367-0.719,0.363-0.764,0.893c-0.076,0.914,0.785,2.328,1.606,2.738c0.924,0.461,1.015-0.863,1.916-0.508c0.553,0.221,2.366,1.816,2.758,0.707c0.277-0.947,1.126-1.059,1.77-1.658c0.652-0.611,0.797-1.904,1.86-1.971c0.886-0.047,1.252-0.555,2.025-0.783c0.641-0.191,2.117-0.459,2.667,0.082c0.253,0.25,0.967,0.104,1.318,0.104c0.564,0,1.281-0.127,1.819,0.021c0.923,0.254-0.203,1.074,0.16,1.516c0.233,0.283,0.775,0.115,1.08,0.137c0.439,0.031,0.857,0.213,1.072,0.615c0.449,0.705,0.013,2.51,0.902,2.746c0.488,0.131,0.825,0.162,1.246,0.494c0.496,0.393,1.068,1.211,1.779,0.736l0.795-0.943c0.592,0.053,1,0.035,1.487,0.369c0.493,0.336,0.874,0.699,1.297,1.121c0.464,0.332,0.944,0.133,1.441-0.598c-0.563-1.227-0.364-1.756,0.596-1.59c0.266,0.064,0.515,0.184,0.746,0.348c0.484-1.178,2.125-1.705,2.393-2.92c0.088-0.402-0.265-0.732-0.438-1.063c-0.234-0.451-0.401-0.938-0.477-1.439c-0.121-0.785,0.061-1.563,1.008-1.188c0.542,0.131,1.11,0.227,1.641,0.395c0.666,0.217,0.691,0.32,1.344,0.064c0.542-0.215,1.199-0.367,1.644-0.764c0.946-0.844,1.563-2.121,2.134-3.227c0.492-1.059,1.11-2.262,2.111-2.928c0.372-0.248,0.8-0.324,1.206-0.494c0.664-0.281,1.266-0.693,1.804-1.17c0.751-0.668,1.449-1.348,2.521-1.182c0.651,0.102,1.303,0.201,1.955,0.305c0.666-0.084,0.853-1.104,0.945-1.615c0.221-1.199-0.238-1.803-1.244-2.461c-0.632-0.379-1.526-0.846-1.89-1.529c-0.212-0.398-0.365-0.84-0.546-1.254C134.301,181.048,132.548,180.718,130.807,179.503C129.747,178.775,131.9,180.265,130.807,179.503z");
    u = R.path("M178.88,174.185c-1.941,0.646-4.271,1.242-5.48,3.041c-0.607,0.906-0.826,1.574-1.99,1.85c-1.326,0.313-2.447,0.344-3.664,1.074c-0.77,0.383-2-1.6-2.455-1.967c-0.725-0.588-1.271-0.416-2.068-0.17c-0.5-0.361-0.945-0.6-1.203-1.182c-0.27-0.609-0.213-1.184-0.23-1.824c-0.018-0.625-0.26-1.221-0.57-1.752l-5.986,0.439c-0.221,0.236-0.432,0.496-0.578,0.787c-0.088,0.18-0.061,0.396-0.219,0.512c-0.316,0.236-0.635,0.473-0.953,0.707c-0.482,0.359-1.051,0.248-1.648,0.266c-0.75,0.021-1.559,0.156-2.281-0.051c-0.404-0.115-1.145-0.346-1.508,0c-0.488,0.465-0.791,0.834-1.523,0.506c-0.498-0.199-1.393-0.828-2.688-1.889c-1.021,0.611-2.041,1.227-3.063,1.838c-0.744,0.445-1.574,0.775-2.156,1.447c-0.41,0.475-0.693,1.225-1.017,1.77c-0.473,0.797-0.705,1.293-0.45,2.264c0.254,0.963,0.634,1.162,1.467,1.563c1.935,0.926,3.187,4.014,0.795,5.289c-0.762,0-1.522,0-2.283,0c-0.216,0-0.593-0.074-0.799,0c-0.544,0.629-1.203,1.191-1.988,1.49c0.165,0.598,0.331,0.93,0.497,0.994c0.543-0.104,1.083,0.656,1.433,0.967c0.267,0.236,0.492,0.277,0.825,0.42c0.706,0.301,1.354,0.732,1.972,1.182c1.039,0.752,1.99,1.686,2.83,2.652c1.273,0.637-1.045,4.324-1.094,5.27c-0.063,0.502-0.77,0.195-1.07,0.219c-0.481,0.037-0.628,0.541-0.666,0.949c-0.075,0.85,0.109,1.768,0.194,2.611c-0.077,1.012-1.542,0.059-2.244,0.197c-0.872,0.176-0.479,1.256-0.242,1.789c0.452,1.225,1.231,2.383,0.458,3.619c-0.773,1.238-1.761,0.078-2.655-0.375c-1.064-0.539-0.866,1.516-0.736,2.076c0.086,0.484,0.151,1.457,0.509,1.805c0.444,0.432,1.038,0.758,1.539,1.113c0.72,0.518,1.207,2.732,2.376,1.953c1.121-0.801-0.62-2.018,0.05-2.684c0.228-0.186,0.566,0.338,0.655,0.461c0.271,0.379,0.396,0.293,0.857,0.313c0.434,0.021,0.389,0.092,0.66-0.262c0.398-0.518,0.801-0.295,1.328-0.479c1.021-0.355,1.813-1.768,2.465-2.568c0.525-0.906-1.568-1.799-0.896-2.387c0.396-0.031,0.938,0.027,1.305-0.125c0.582-0.242,0.615-0.396,0.881-0.969c0.725-1.518,3.859,0.617,4.873,1.094c0.625-0.43,1.162-1.004,1.408-1.732c0.258-0.766,0.041-1.506,0.105-2.287c0.131-1.637,2.316-1.879,3.105-3.113c0.367-0.574,0.453-1.059,1.068-1.479c0.707-0.48,1.49-0.797,2.121-1.396c1.059-1.008,0.967-2.229-0.002-3.264l-1.74-1.74c-0.332-0.498-0.166-1.145,0.496-1.938c1.17-1.563,3.777-0.977,5.422-1.611c0.848-0.326,1.529-1.047,2.5-0.67c0.588,0.227,1.146,0.699,1.725,0.988c0.357-0.273,0.771-0.529,1.094-0.848c0.551-0.783,1.346-1.555,2.371-1.525c2.32,0.063,2.732,2.91,3.104,4.637c0.283,1.314,0.377,2.943,2.068,2.658c1.094-0.186,2.219-0.643,3.195-1.15c0.193-0.102,2.127-1.736,1.938-1.832c0.877,0.877,1.729,1.686,3.082,1.441c0.664-0.164,1.16-0.447,1.492-0.844c-0.605-0.811-2-1.063-2.834-1.594c0-0.547,3.629-0.18,3.938-0.164c0.863,0.039,1.734,0.027,2.492-0.443c0.488-0.307,2.156-1.992,0.828-2.227c-0.467-0.063-1.883-0.055-2.043-0.602c-0.285-0.971,2.375-1.375,2.422-2.459c0.02-0.465-0.572-0.896-0.268-1.379c0.287-0.457,1.178-0.223,1.314-0.84c0.1-0.436-0.387-0.873,0.125-1.215c0.408-0.271,1.43-0.275,1.43-0.961c-0.061-0.551-0.863-0.791-1.264-0.996c-0.504-0.256-0.865-0.697-1.068-1.221c-0.229-0.586-0.227-1.283-0.898-1.563c-0.287-0.115-0.688-0.105-0.994-0.148c-1.164-0.225-1.043-1.709-0.895-2.586c-1.131,0-2.473-1.361-3.262-2.078c-0.77-0.699-1.537-1.398-2.307-2.1C180.919,172.974,179.974,173.787,178.88,174.185C176.892,174.847,179.974,173.787,178.88,174.185z");
    v = R.path("M191.791,217.501l-1.531-4.744c-0.469-1.09-2.568-0.521-3.48-0.813c-0.65-0.211-2.35-1.361-2.35-2.152c-0.193-1.051,1.414-2.533,1.842-3.383c0.768-1.521,1.004-3.336,0.539-4.984c-0.438-1.553-1.799-2.533-2.281-4.045c-0.131-0.416-0.295-1.27,0.316-1.385c0.414-0.08,0.74-0.092,1.164-0.232l0.148-0.742c-0.055-0.301-0.205-0.479-0.414-0.58c-0.367,0.037-1.023-0.029-1.342,0.15c-0.484,0.275-0.971,0.549-1.457,0.826c-1.346,0.24-2.191-0.563-3.063-1.434c0.074,0.037-1.264,1.426-1.43,1.533c-0.951,0.611-2.107,1.049-3.199,1.33c-0.482,0.123-1.262,0.324-1.693-0.047c-0.438-0.389-0.557-1.301-0.684-1.828c-0.406-1.688-0.506-4.211-2.34-5.061c-0.744-0.348-1.564-0.25-2.229,0.221c-0.648,0.461-1.238,1.924-2.113,1.924c-0.514-0.258-0.941-0.572-1.438-0.852c-1.066-0.605-1.797,0.166-2.758,0.537c-1.637,0.631-4.227,0.049-5.389,1.6c-0.658,0.791-0.822,1.434-0.492,1.928l1.729,1.729c1.041,1.111,1.008,2.377-0.15,3.383c-0.668,0.578-1.514,0.871-2.191,1.426c-0.559,0.455-0.617,1.125-1.09,1.627c-1.117,1.189-2.938,1.395-2.822,3.34c0.09,1.547-0.305,2.477-1.502,3.416c0.344,1.863,1.918,2.271,3.508,2.668c0.262,0.102,0.344,0.279,0.246,0.545c-0.957,0.742-2.293,1.469-2.848,2.566c-0.529,1.045-0.973,2.156-1.5,3.213c-0.453,0.775,0.818,1.467,1.213,1.953c0.445,0.553,0.826,1.285,0.934,1.99c0.143,0.941,0.283,1.885,0.424,2.826c1.104-0.105,2.096-0.395,3.162-0.691c0.105-0.461,0.086-1.055,0.346-1.453c0.393-0.607,1.076-0.832,1.725-1.049c0.309-0.102,1.576,0.736,1.91,0.902c1.67,0.83,3.342,1.658,5.014,2.488c0.297-0.23,0.646-0.604,1.037-0.631c0.785-0.061,1.227,0.773,1.877-0.109c0.318-0.605,0.545-1.813,1.188-2.176l0.689,0.051c0.08,0.143,0.646,1.344,0.842,1.086c0.412-1.01,0.693-3.213,1.68-3.705c0.605-0.361,1.721,0.68,2.174,0.986c1.182,0.457,1.852-1.211,2.492-1.852c0.359-0.359,0.744-0.924,1.24-1.096c1.084-0.375,2.064,0.688,2.654,1.447c0.744,0.965,0.281,1.617,0.521,2.686c0.166,0.732,0.605,1.191,1.068,1.748c0.184,0.219,0.963,0.188,1.266,0.447c0.773,0.662,1.318,1.631,1.822,2.498c0.316-0.271,0.633-0.539,0.947-0.811c0.193-0.168,0.104-0.352,0.447-0.387c0.369-0.035,0.754,0.051,1.109,0.131c0.895,0.203,1.869,0.139,2.783,0.176c0.926-1.275,1.395-2.816,1.57-4.373C191.808,220.72,192.021,219.058,191.791,217.501C191.791,217.501,191.923,218.39,191.791,217.501z");
    w = R.path("M213.826,222.541c-0.201-0.355-0.676-1.424-1.234-1.283c-0.266,0.176-0.369,0.438-0.596,0.639c-0.379,0.334-0.941,0.242-1.381,0.104c-0.422-0.127-0.873-0.377-0.953-0.854c-0.055-0.305,0.145-0.643-0.146-0.867c-0.758-0.584-1.99-0.086-2.854-0.408c-0.377-0.143-0.293-0.438-0.527-0.709c-0.277-0.322-0.705-0.313-1.07-0.459c-1.051-0.432-2.146-0.842-3.258-0.236c-0.508,0.277-0.633,0.637-0.813,1.148c-0.227,0.643-0.639,1.201-1.104,1.691c-0.854,0.895-1.523,0.881-2.566,0.445c-0.602-0.1-0.633,1.326-1.398,0.729c-0.254-0.193-0.428-0.602-0.766-0.682c-0.242-0.057-0.205,0.25-0.348,0.244c-0.334-0.016-0.779,0.051-1.098-0.047c-0.58-0.43-1.33-0.742-2.025-0.396c-0.133,2.041-0.676,3.725-1.631,5.039c-0.568-0.021-1.141-0.047-1.711-0.068c-0.721-0.027-1.473-0.307-2.182-0.236l-0.357,0.309c0.035,0.311,0.033,0.557-0.246,0.74c-0.104,0.066-0.357,0.066-0.479,0.09c-0.359,0.066-0.52,0.215-0.789,0.488c-0.67,0.68-0.842,1.512-1.352,2.271c-0.395,0.596-1.352,0.875-0.889,1.742c0.455,0.775,1.213,2.803,2.25,2.873c0.986,0.066,1.514,0.123,2.068,0.971c0.412,0.631,0.689,1.457,1.266,1.939h0.049c0.623,0.498,0.09,1.828-0.029,2.42c-0.197,0.955-0.195,1.988,0.275,2.865c0.482,0.805,1.029,0.859,1.754,1.271c0.602,0.34,0.904,1.313,1.047,1.932c0.352,1.521-0.877,2.494-1.859,3.418c-0.285,0.568,0.688,0.977,0.881,1.432c0.143,0.33-0.033,0.805-0.084,1.146c-0.23,1.547,0.082,2.893,0.783,4.293c1.834-0.229,3.51-1.568,3.916-3.467c0.1-0.459-0.063-0.932,0.049-1.373c0.146-0.584,0.709-0.859,1.168-1.168c0.439-0.293,0.83-0.711,0.895-1.258c0-0.498,0.268-0.879,0.742-1.037c0.711-0.271,0.746-1.623,0.793-2.223c0.096-1.107,0.408-2.234,1.137-3.098c1.484-1.764,3.951,0.51,5.434-1.301c0.283-0.389,0.719-1.121,0.1-1.436c-0.662-0.293-0.748-0.814-0.336-1.383c0.391-0.535,0.906-0.6,1.439-0.904c0.646-0.379,1.143-1.01,1.563-1.613c-0.672-0.783-1.521-1.764-1.668-2.832c-0.104-0.773,0.209-1.428-0.258-2.158c-0.754-1.301-2.963-0.291-2.52-2.223c0.234-1.414,1.15-2.027,2.146-2.918c0.67-0.6,1.313-0.139,1.805,0.406c0.676,0.75,1.705,2.375,2.834,2.221c0.67-0.094,0.896-0.969,1.568-1.184c0.572-0.186,1.227-0.121,1.824-0.207c-0.115-0.879-0.439-1.801-0.426-2.678C212.677,223.769,213.263,223.207,213.826,222.541L213.826,222.541z");
    x = R.path("M230.08,237.806l1.928-2.123c-0.521-0.066-0.963-0.348-1.141-0.857c-0.168-0.49,0.023-1.396-0.506-1.709c-0.479-0.281-1.08-0.354-1.574-0.654c-0.773-0.479-1.451-1.105-2.064-1.77c-1.211-1.285-2.195,1.646-3.164,0.197c-0.658-1.063-2.365-0.963-3.418-0.77c-1.186,0.221-2.098,0.947-2.361,2.152c-0.299,1.156-0.77,2.104-1.5,3.033c-1.311,1.674-2.432,3.465-4.727,3.785c-1.35,0.262-2.059,0.049-2.125-0.645l-0.248-1.088l-1.828-1.086c-0.385,0.553-0.822,1.105-1.379,1.492c-0.469,0.328-1.041,0.381-1.447,0.814c-0.398,0.424-0.693,1.059-0.102,1.455c0.707,0.473,0.686,0.854,0.162,1.572c-1.482,1.813-3.949-0.463-5.434,1.303c-0.656,0.777-0.979,1.777-1.104,2.775c-0.084,0.66-0.02,2.232-0.826,2.543c-0.947,0.316-0.654,1.508-1.385,2.111c-0.457,0.377-1.063,0.578-1.34,1.143c-0.236,0.48-0.018,1.064-0.127,1.582c-0.406,1.896-2.082,3.234-3.916,3.467c-0.732,0.842-0.666,1.434-0.531,2.43c0.088,0.645,0.059,0.811-0.408,1.273c-0.303,0.045-0.516-0.182-0.686-0.395l-0.992,0.209c-0.018,0.09-0.002,0.17,0.047,0.236l0.494,0.297c0.955,0.508-0.83,2.803-1.037,3.557c-0.363,0.105-0.531,0.439-0.939,0.396c-1.771,0.229-0.471,2.824-0.717,3.805c-0.361,1.451-2.346,2.172-0.865,3.854c0.436-0.055,0.936-0.092,1.236,0.295c0.471,0.539-0.326,1.092-0.051,1.564c0.275,0.475,0.551,0.945,0.828,1.42c0.436,0.752,1.045,1.41,1.578,2.094c0.393,0.504,0.756,1.135,0.795,1.787c0.021,0.418-0.135,0.787-0.02,1.211c0.09,0.338,0.355,0.605,0.387,0.959c0.074,0.871-0.648,1.732-1.121,2.387c-0.121,0.168-1.119,1.367-0.865,1.625l0.592,0.049c0.904-1.287,1.609-2.555,3.105-3.229c0.904-0.408,1.768-0.744,2.029-1.797c0.148-0.598,0.301-1.193,0.449-1.793c-0.08-0.801-1.326,0.092-0.84-1.088c0.387-0.988,1.279-0.688,2.076-1.117c1.002-0.543,1.672-1.502,2.418-2.342c0.301,1.492-1.205,2.787-2.174,3.756l-0.346-0.197c-0.395,0.264-0.492,0.512-0.297,0.74c1.566,0.076,3.031,0.146,4.588-0.016c0.459-0.049,0.686-0.146,1.064,0.104c0.836,0.563,1.83,0.744,2.721,1.189c1.191,0.596,1.965,1.484,2.746,2.523c1.074,0.113,1.939-0.107,3.006-0.328c0.582-0.119,1.16-0.225,1.709-0.467c0.385-0.172,0.801-0.426,0.967-0.836c0.211-0.541,0.605-0.646,1.037-0.246c0.234,0.186,0.395,0.451,0.08,0.648c-0.102,0.063-0.938,0.307-0.771,0.389c1.059,0.266,2.139,0.453,3.174,0.797c0.479,0.16,2.686,1.543,3.051,1.182c0.332-0.799,0.662-1.596,0.994-2.393c0.477-1.15,1.203-2.322,1.33-3.588c0-0.643-0.414-0.971-1.037-0.938c-0.719,0.061-1.32-0.299-1.719-0.881c-0.516-0.75-0.742-1.635-0.549-2.531c0.051-0.234,0.66-1.691,0.191-1.826c-0.861-0.191-0.502,1.828-1.234,1.828c-0.391,0-0.342-0.77-0.436-0.986c-0.195-0.449-0.74-0.551-1.096-0.814c-0.855-0.639-0.4-1.814-0.953-2.633c-0.59-0.875-2.373-1.508-1.125-2.631c0.658-0.658,1.006-0.658,1.037,0c-0.031,1.021,0.033,1.613,0.199,1.777c0.734-0.094,1.436-0.26,2.152-0.385c0.787-0.139,1.322,0.211,1.934,0.646c0.213,0.152,0.922,0.693,1.15,0.281c-0.053-0.719-0.115-1.436-0.156-2.154c-0.053-0.873,0.543-1.854,0.928-2.596c1.729-3.32,3.928-6.457,6.164-9.451c0.752-1.006,2.145-2.18,2.467-3.41c0.248-0.945-0.068-2.066-0.189-3.018c-0.215-1.688-0.588-3.252-0.35-4.971C227.937,240.949,228.812,239.167,230.08,237.806C230.08,237.806,229.16,238.794,230.08,237.806z");
    y = R.path("M239.517,214.537c-1.123-1.064-0.965-2.734-0.768-4.135c0.281-1.996,0.734-3.938,0.701-5.969c-0.029-1.732-0.438-3.229-1.123-4.805c-0.326-0.746-0.43-1.354-0.309-2.145c0.125-0.818-0.396-1.73-0.775-2.416l-3.754,0.146c-0.33-0.447-0.684-1.141-1.215-1.371c-0.49-0.213-1.223,0-1.701,0.188c-0.605,0.232-1.08,0.711-1.768,0.699c-0.59-0.01-1.125-0.332-1.564-0.697c-0.273-0.23-0.973-1.07-1.41-0.693c-0.484,0.484-0.369,1.594-0.668,2.211c-0.342,0.707-0.973,1.066-1.754,0.9c-1.141-0.311-0.813-1.314-0.963-2.193c-0.115-0.674-0.865-0.623-1.412-0.76c-0.27-0.066-0.771-0.98-1.057-1.184c-0.904-0.643-2.063-0.914-3.141-1.102c-1.146,0.541-0.979,2.119-1.52,3.061c-0.432,0.76-1.424,0.623-2.186,0.744c-0.334,0.332,0.016,1.441-0.275,1.955c-0.285,0.502-1.34,0.693-1.209,1.355l0.447,0.791c1.037,1.557-2.199,1.457-2.57,2.322l0.051,0.641c0.188,1.133-2.834,1.66-3.473,1.816c-0.523,0.131-3.131,0.541-3.197,1.348c0,1.318-0.299,2.346-1.102,3.404c-0.688,0.908-1.375,1.813-2.063,2.723c-0.818,1.227,0.742,2.404,1.432,3.23c0.951,1.146,1.479,2.266,0.891,3.732c0.783-0.096,1.424-0.281,2.152,0.016c0.447,0.182,0.871,0.363,1.336,0.479c0.674,0.166,0.568,0.832,1.107,1.033c0.758,0.285,1.602,0.059,2.381,0.223c0.75,0.156,0.518,0.475,0.617,1.055c0.125,0.721,1.137,1.021,1.762,0.979c0.602-0.045,0.725-0.572,1.168-0.865c0.561-0.143,1.035,0.93,1.236,1.285c-0.564,0.666-1.15,1.229-1.166,2.164c-0.018,0.877,0.309,1.799,0.424,2.678c-0.521,0.074-1.063,0.041-1.574,0.145c-0.832,0.164-0.973,0.961-1.664,1.209c-1.102,0.393-2.223-1.334-2.863-2.043c-0.426-0.477-1.131-1.26-1.816-0.646c-1.025,0.918-2.018,1.563-2.26,3.018c-0.441,1.934,1.768,0.922,2.521,2.225c0.395,0.615,0.24,1.156,0.248,1.826c-0.066,0.736,0.418,1.482,0.816,2.059c0.754,1.09,1.576,1.531,2.689,2.189l0.248,1.09c0.064,0.689,0.773,0.902,2.123,0.643c2.236-0.313,3.33-2.002,4.607-3.633c0.695-0.891,1.213-1.746,1.527-2.852c0.354-1.23,0.869-2.104,2.195-2.434c1.055-0.26,2.793-0.396,3.566,0.563c1.258,1.555,1.793-1.182,3.07-0.227c1.246,0.932,2.08,2.207,3.707,2.553c0.6,0.119,0.494,1.115,0.578,1.533c0.125,0.625,0.578,1.002,1.201,1.084c0.533-0.803,0.643-1.656,0.643-2.617c-0.074-1.338,0.25-2.684,0.668-3.941c0.383-1.156,0.889-2.318,1.846-3.117c0.563-0.469,1.277-0.73,1.936-1.043c0.299-0.184-0.078-0.916,0-1.248c0.096-0.42,0.297-0.816,0.51-1.189c0.408-0.711,0.816-1.422,1.227-2.135C239.714,218.857,241.105,216.076,239.517,214.537C238.859,213.912,240.572,215.558,239.517,214.537");
    z = R.path("M189.666,252.285c0.045-0.295,0.186-0.695,0.146-0.988c-0.076-0.609-1.25-1.004-0.938-1.631c0.908-0.855,2.066-1.74,1.908-3.139c-0.078-0.688-0.41-1.66-0.965-2.119c-0.25-0.209-0.602-0.203-0.887-0.355c-0.428-0.225-0.752-0.6-0.998-1.008c-0.473-0.877-0.475-1.91-0.277-2.867c0.121-0.592,0.652-1.92,0.029-2.42h-0.049c-0.576-0.48-0.852-1.307-1.264-1.938c-0.557-0.848-1.082-0.904-2.068-0.971c-1.039-0.07-1.797-2.1-2.25-2.873c-0.486-0.908,0.666-1.297,1.031-1.98c0.506-0.953,0.811-1.76,1.686-2.467c-0.525-0.902-1.146-2.125-2.08-2.688c-0.229-0.139-0.496-0.152-0.758-0.191c-0.334-0.053-0.439-0.295-0.658-0.555c-0.256-0.309-0.443-0.57-0.578-0.963c-0.227-0.66,0.021-1.213-0.059-1.855c-0.127-1.039-1.512-2.563-2.588-2.641c-0.518,0.486-0.967,0.947-1.408,1.506c-0.24,0.303-0.465,0.664-0.77,0.908c-0.252,0.203-0.563,0.307-0.885,0.254c-0.352,0.324-0.813,0.527-1.285,0.346c-0.504-0.344-0.998-0.691-1.531-0.988c-0.635,0.908-0.906,2.268-1.285,3.313c-0.205,0.271-0.529-0.563-0.592-0.691l-0.445,1.088c-0.191,0.256-0.76-0.943-0.84-1.088c-0.289,0.596-0.809,2.301-1.666,2.188c-0.41-0.055-0.455,0.377-0.9,0.398c-0.584,0.027-0.602-0.486-1.168-0.117c-0.533,0.35-1.223,0.451-1.826,0.65c-1.451,0.482-1.592-1.152-2.82-1.479c-0.486-0.129-0.973-0.256-1.459-0.385c-0.871-0.23-0.852-0.822-1.18-1.484l-0.643-0.316c-0.457,0.273-0.867,0.682-0.932,1.234s-0.059,1.051-0.699,1.234c-0.461,0.047-0.723,0.348-1.137,0.41c-0.494,0.076-0.988,0.152-1.48,0.23c0.018,0.521-0.131,1.336,0.111,1.797c0.332,0.631,0.467,1.059,0.58,1.762c0,0.533,0.803,0.445,1.133,0.521c0.535,0.117,0.682,0.594,0.965,0.986c0.74,1.027,2.031,1.371,2.859,2.303c0.869,0.979,1.082,2.264,1.504,3.459c0.416,1.18,1.021,2.176,1.598,3.273c0.197,0.377,0.41,0.801,0.445,1.232c0.025,0.332-0.186,0.592-0.137,0.936c0.164,1.178,1.219,1.813,0.738,3.029c-0.227,0.574,0.363,1.096,0.297,1.688c-0.076,0.668-0.338,1.184-0.262,1.893c0.041,0.42,0.217,0.941,0.74,0.74c0.574-0.314,0.523,0.662,0.469,0.967c-0.219,1.188-1.604,1.162-1.992,2.105c-0.344,0.838,1.127,1.438,1.457,2.063c0.256,0.488,0.371,1.059,0.748,1.477c0.383,0.426,0.883,0.504,1.324,0.813c0.797,0.563-0.184,2.668-0.309,3.365c-0.193,1.094-0.219,2.152,0.316,3.152c0.469,0.875,0.902,1.217,1.699,1.713c0.521,0.324,1.064,0.631,1.568,0.982c1.043,0.729,0.857,1.836,1.672,2.688c0.48,0.504,0.459,1.271,0.713,1.887c0.262,0.631,0.707,1.166,1.326,1.465c0.49,0.443,0.75,1.768,1.385,1.928c1.246,0.072,1.73-1.396,2.436-2.17c0.309-0.336,0.732-0.736,1.207-0.771c0.59-0.043,1.012,0.861,1.5,1.129c0.436,0.236,0.969,0.178,1.279,0.621c0.281,0.396,0.189,0.861,0.83,0.732c0.422-0.084,0.955-0.365,1.109,0.242c0.119,0.477,0.004,1.145,0.729,0.758c0.908-0.576,0.836-1.842,1.777-2.42h-0.1c-0.705-0.801-0.725-1.721-0.012-2.52c0.332-0.371,0.709-0.668,0.83-1.154c0.221-0.873-0.133-1.533-0.182-2.426c-0.037-0.693,0.148-1.457,0.943-1.561c0.408,0.045,0.576-0.291,0.938-0.396c0.209-0.754,1.994-3.049,1.039-3.557l-0.494-0.299c-0.133-0.176-0.002-0.4,0.1-0.543c0.305-0.523,0.615-0.045,0.924,0.084c-0.049-0.176-0.012-0.336,0.113-0.479c0.311-0.533,0.73-0.078,0.986,0.246c-0.115-0.855-0.439-1.727,0.037-2.514c0.121-0.195,0.256-0.379,0.408-0.551c-0.113-0.229-0.221-0.457-0.318-0.689c-0.176-0.422-0.326-0.855-0.432-1.299C189.533,253.804,189.48,253.025,189.666,252.285C189.666,252.285,189.371,253.468,189.666,252.285z");
    a1 = R.path("M165.308,262.412c-0.156-0.816-0.037-1.678,0.129-2.482c0.164-0.791,0.789-2.004,0.42-2.813c-0.146-0.33-0.58-0.379-0.863-0.539c-0.383-0.213-0.717-0.514-0.918-0.902c-0.396-0.756-0.512-1.4-1.248-1.873c-0.705-0.451-0.98-1.242-0.209-1.756c0.719-0.479,1.506-0.857,1.553-1.836c0.064-1.354-0.736-0.197-1.107-0.961c-0.5-1.031,0.381-2.023,0.063-3.004c-0.121-0.367-0.381-0.689-0.223-1.094c0.141-0.355,0.271-0.486,0.17-0.896c-0.199-0.797-1.121-1.666-0.893-2.527c0.383-1.447-1.066-2.891-1.598-4.189c-0.783-1.918-0.98-4.076-2.936-5.213c-0.762-0.418-1.59-0.969-1.977-1.779c-0.203-0.379-0.543-0.641-0.986-0.641c-0.301-0.02-0.889-0.072-0.889-0.494c-0.113-0.705-0.25-1.129-0.58-1.762c-0.244-0.463-0.096-1.277-0.111-1.799l-1.037,0.102c-0.143-0.941-0.281-1.887-0.426-2.826c-0.104-0.705-0.488-1.438-0.934-1.99c-0.395-0.484-1.664-1.178-1.211-1.953c0.488-0.979,0.961-1.943,1.377-2.949c0.521-1.262,1.922-2.02,2.971-2.83c0.098-0.264,0.016-0.443-0.248-0.543c-1.588-0.396-3.164-0.805-3.508-2.668l0.691-0.545l-5.707,2.004c0.113,0.549-0.51,1.055-0.814,1.432c-0.432,0.531-0.859,1.193-1.471,1.531c-0.383,0.213-0.789,0.061-1.154,0.234c-0.43,0.207-0.396,0.637-0.883,0.615c-0.201-0.008-0.664,0.063-0.842-0.035c-0.09-0.145-0.552-0.969-0.839-0.742c-0.667,0.666,1.068,1.875-0.049,2.67c-0.957,0.639-1.625-0.945-2.075-1.592c-0.453-0.65-1.255-0.914-1.817-1.457c-0.58-0.563-0.618-2.447-0.547-3.174c0.209-2.17,2.2,1.271,3.203-0.004c1.024-1.391,0.279-2.48-0.248-3.902c-0.209-0.475-0.613-1.48,0.105-1.742c0.729-0.268,2.288,0.801,2.366-0.232c-0.078-0.773-0.219-1.58-0.207-2.357c0.008-0.402,0.068-1.02,0.537-1.156c0.324-0.096,1.135,0.295,1.201-0.24c0.051-0.938,2.352-4.604,1.086-5.236c-0.736-0.852-1.564-1.568-2.406-2.318c-0.719-0.645-1.654-1.234-2.563-1.57c-0.413-0.154-0.748-0.238-1.077-0.559c-0.302-0.291-0.475-0.834-0.969-0.74c-0.165-0.066-0.329-0.396-0.494-0.988c-0.647,0.484-0.993,0.637-1.784,0.809c-0.838,0.184-1.399,0.971-1.861,1.635c-0.742,1.066-1.217,2.297-1.96,3.354c-0.438,0.621-0.875,1.242-1.313,1.863l1.433,0.295c0.081,0.4-2.271,1.07-2.502,1.16c-0.9,0.354-2.229,1.029-2.345,2.141c-0.084,0.811-0.175,0.992-0.708,1.609c-0.287,0.33-1.07,0.549-1.461,0.82c-0.386,0.58,0.73,2.195,0.85,2.758c0.22,1.029-0.395,1.656-0.998,2.383c-0.1,0.195-0.016,0.443,0.247,0.74c1.387,1.227-2.409,0.682-1.68,1.977c0.495,0.791,0.643,1.17,0.445,1.137c-1.037-0.414-2.699-1.412-3.805-0.938c-1.128,0.328-1.803,1.928-2.472,2.84c-0.499,0.684-1.482,1.584-1.636,2.449c-0.124,0.699-0.1,1.447,0.048,2.141c0.129,0.605,0.3,1.002-0.012,1.566c-0.69,1.252-1.699,2.012-2.795,2.859c0.384,1.025,0.371,2.279,0.446,3.355c0.074,1.059,0.027,3.074,1.382,3.412c0.793,0.168,1.02-0.227,1.642-0.531c0.522-0.256,0.81,0.584,1.183,0.582c0.519-0.006,1.037-0.01,1.556-0.016c1.339-0.012,2.679-0.023,4.019-0.035c0.52,0.611,0.857,1.031,1.137,1.777c0.23,0.463,1.316,0.627,3.261,0.494c-0.205,1.225-0.804,2.176-1.439,3.213c-0.611,0.996,0.108,2.066-0.462,2.988c-0.541,0.873-1.153,1.232-1.063,2.396c0.007,0.438,0.041,0.879,0.061,1.314c0.044,0.963,0.409,2.66-0.545,3.313c-0.717,0.488-1.112-0.223-1.781-0.238c-0.53-0.014-1.06-0.025-1.589-0.041c-1.272,0.395-1.245,1.26-1.086,2.371c-0.065,0.164-0.296,0.262-0.691,0.295c-1.101-0.059-0.579-1.688-0.494-2.371c-0.118-0.293-2.26,0.996-2.5,1.127c-0.576,0.311-0.711,1.434-0.811,1.986c-0.138,0.639-0.468,1.613-0.247,2.271c0.882,0.08,1.765,0.162,2.647,0.242c1.833,0.166,3.071,1.732,3.282,3.414c0.08,1.436,2.224-0.4,2.618,0.592c0.034,0.893-0.206,2.332,0.477,3.004c0.753,0.74,3.181-0.084,2.487,1.74l-0.939,2.125c0,0.332,0.289,0.578,0.545,0.74c0.383,0.268,0.493,0.744,0.493,1.186c-0.033,0.625-0.214,1.021-0.544,1.188l-0.888,0.248c0.725,1.207,0.231,2.799,0.872,3.988c0.372,0.691,1.078,0.814,1.778,0.965c0.423,0.092,1.401,0.277,1.401,0.877l-0.593,1.58c2.025,0.27,3.986,0.605,6.028,0.543c0.487-0.35,0.153-1.111,0.049-1.58c-0.164-0.76,0.281-1.234,1.334-1.436c0.375,0.029,1.121-0.076,1.385,0.207c0.487,0.523,0.903,1.148,1.58,1.438c1.091,0.465,2.314,0.156,3.433,0.529c0.727,0.242,1.127,0.693,1.559,1.285c0.609-0.014,0.854-0.689,1.48-0.689l1.482,0.441c1.41,0.629,1.236-2.512,1.1-3.158c-0.176-0.811-0.721-1.508-1.313-2.063c-1.48-1.389-0.58-3.691-0.281-5.447c0.186-0.609,3.561-0.557,4.082-0.6c2.064-0.17,4.135-0.342,6.201-0.516c1.285-0.105,2.709,0.01,3.92,0.461c0.832,0.309,1.602,0.762,2.473,0.961c0.773,0.18,1.447-0.139,1.754,0.777c0.654,1.805,2.771,1.379,3.754,0.148C165.818,263.746,165.439,263.039,165.308,262.412C165.144,261.554,165.439,263.039,165.308,262.412z");
    a2 = R.path("M103.154,229.162c-0.63,0.262-0.404,0.916-0.502,1.43c-0.126,0.658-1.202,0.842-1.721,0.941c-0.517,0.088-1.315,0.191-1.699-0.273c-0.158-0.191-0.125-0.424-0.246-0.627c-0.177-0.295-0.526-0.482-0.823-0.631C99.437,229.037,101.694,227.96,103.154,229.162c-1.171-0.963-2.964-0.408-4.135,0.268c-0.91,0.525-0.766,0.605-1.667,0.275c-1.706-0.627-3.412-1.252-5.117-1.879c-1.146-0.42-2.164-0.365-3.397-0.389c-0.458-0.01-0.895,0.563-1.291,0.467c-0.658-0.154-2.021-0.197-2.279-0.865c-0.362-0.99-0.396-1.436-0.099-1.336c0.658,0.197,1.17,0.133,1.532-0.197c0.59-0.635,0.149-0.814-0.297-1.26c-0.351-0.352,0.556-0.664,0.366-1.172c-0.229-0.613-0.902-0.906-1.268-1.424c-0.265-0.373,0.174-0.672-0.382-0.84l-1.235-0.047c-1.037,0.135-1.878,0.701-1.878,1.826c0,1.23-1.395,2.096-1.922,3.15c-0.426,0.852-0.684,2.752-1.708,3.141c-0.51,0.195-0.897,0.227-1.33,0.625c-0.496,0.457-0.793,1.07-1.272,1.537c-1.389,1.354-3.551,0.926-5.306,0.836c-1.178-0.063-1.581,1.563-2.559,1.994c-0.944,0.42-2.626,0.572-3.198-0.516c-0.646-1.133,4.379-2.961,3.755-3.508c-0.735-0.662-2.43,0.352-3.231,0.684c-1.113,0.461-2.227,0.922-3.34,1.383c-1.657,0.686-3.122-0.082-4.326-1.238c-0.418-0.4-0.836-0.904-1.337-1.207c-0.384-0.23-1.061-0.17-1.5-0.211c-0.98-1.141,0.328-3.262-1.828-3.559c-0.362-0.1-0.609-0.049-0.741,0.146c-0.411,0.514,1.189,1.898,1.481,2.227c0.432,1.145-5.28,1.82-5.971,1.822c-0.765,0-1.957-0.334-2.227,0.672c-0.135,0.504-0.075,1.133-0.102,1.652c-0.636,0.092-1.239-0.029-1.868,0.115c-1.427,0.326-2.637,1.129-4.161,0.822c-0.395-0.08-0.728-0.307-1.128-0.279c-0.351,0.021-0.703,0.047-1.053,0.068c-0.349,0.021-0.56,0.254-0.882,0.395c-0.665,0.285-1.407,0.361-2.124,0.361c-1.318-0.031-1.251-0.527,0.198-1.482c0.865-0.596,1.799-1.109,2.802-1.438c0.885-0.289,1.936-0.275,2.694-0.877c0.588-0.469,0.688-1.262,1.31-1.74c0.814-0.629,1.868-0.875,2.753-1.393c0.913-0.531,1.65-1.244,2.492-1.869c0.377-0.279,0.8-0.521,1.262-0.629c0.345-0.082,0.799,0.021,1.09-0.221c0.567-0.473-0.378-1.357,0.409-1.84c0.396-0.24,1.986-0.506,1.491-1.309l-0.247-0.494c0-0.18,0.813-0.602,1.001-0.75c0.399-0.32,0.621-0.572,1.16-0.729c1.519-0.428,2.243-0.188,2.928,1.182c0.09,0.182,1.287-0.443,1.482-0.594c0.44-0.334,0.786-1.119,1.104-1.57c0.683-0.975,0.342-1.852,0.296-2.916c-0.026-0.604,0.687-0.73,1.113-0.895c0.638-0.242,0.762-0.584,0.936-1.182c0.164-0.559,0.704-0.383,0.989-0.758c0.365-0.484-0.558-1.061-0.152-1.584c0.408-0.525,0.547-0.855,0.802-1.473c0.878-2.342,4.745-2.096,4.99-4.893c0.104-1.412-1.139-0.828-1.9-0.736c-0.654,0.078-1.309,0.154-1.962,0.232c-0.464,0.057-0.958-0.121-1.423-0.141c-0.54-0.02-1.091,0.033-1.63,0.053c-0.256-0.566,0.89-1.252,1.225-1.48c0.969-0.658,1.618-1.309,1.95-2.441c0.318-1.086,1.549-1.311,1.899-2.279c0.149-0.414-0.075-0.766-0.041-1.174c0.045-0.551,0.508-0.949,0.945-1.223c0.985-0.643,0.953-1.549,1.532-2.424c0.537-0.811,1.502-0.998,2.206-1.596c0.773-0.658,1.331-1.566,1.818-2.443c0.417-0.75,0.786-2.045,1.559-2.529c0.691-0.576,1.369,0.172,1.915,0.563c0.51,0.365,1.126,0.438,1.619,0.738c0.337,0.205,0.674,0.41,1.011,0.615c0.477,0.289,0.694,0.939,1.334,0.998c0.33,0.066,0.825-0.131,1.483-0.594c0.296-0.229,0.445-0.74,0.445-1.531c-0.1-1.688,3.835,0.182,4.348,0.494c-0.35,1.861,0.178,3.625,1.793,4.701c0.823,0.549,1.754,0.949,2.357,1.771c0.578,0.768,1.965,0.799,1.828,1.977c-0.087,0.543-0.087,1.104,0.045,1.639c0.107,0.438,0.416,0.855,0.407,1.314c-0.008,0.418-0.313,0.5-0.59,0.721c-0.413,0.324-0.28,0.9-0.11,1.316c0.429,1.021,0.906,1.664,1.433,1.93c0.917,0.459,1.008-0.859,1.903-0.506c0.549,0.219,2.353,1.805,2.741,0.701c0.299-1.016,1.316-1.117,1.942-1.838c0.732-0.846,0.716-1.652,1.976-1.793c0.778-0.088,1.203-0.658,1.945-0.814c0.553-0.115,2.124-0.408,2.486,0.248c0.953,0.244,2.294-0.379,3.188,0.074c0.671,0.34-0.332,1.035,0.009,1.449c0.232,0.279,0.771,0.111,1.074,0.137c0.437,0.031,0.852,0.211,1.065,0.611c0.448,0.699,0.011,2.492,0.896,2.729c0.485,0.129,0.82,0.158,1.238,0.49c0.492,0.389,1.062,1.203,1.769,0.73l0.791-0.938c0.589,0.053,0.994,0.035,1.478,0.365c0.489,0.336,0.868,0.695,1.288,1.115c0.461,0.33,0.939,0.133,1.433-0.592c0.625,1.314,0.84,2.455,0.642,3.408c-0.263,1.088-0.988,1.631-2.173,1.631c-1.26-0.314-2.338-0.746-3.621-0.313c-1.144,0.391-2.266,0.867-3.396,1.299c-0.994,0.547,1.554,0.953,1.779,0.988c0.858,0.104,2.392,0.443,1.779,1.631c-0.509,0.902-1.515,1.199-2.138,1.949c-0.578,0.695-0.124,1.881,0.162,2.596c0.346,0.82,0.745,1.963,0.244,2.809c-0.272,0.459-0.73,0.863-1.079,1.264c-0.581,0.67-1.442,1.055-2.082,1.66c-0.912,0.631-0.709,2.65-0.791,3.656c-0.327,0.131-1.557,0.391-1.699,0.664c-0.209,0.404-0.13,0.908-0.394,1.326c-0.296,0.473-0.782,0.756-1.316,0.875c-0.494,0.119-1.167,0.219-1.57-0.182C103.875,229.943,103.652,228.849,103.154,229.162C102.759,229.326,103.418,228.998,103.154,229.162z");
    a3 = R.path("M122.917,258.955c-1.854,0.055-1.533-2.084-1.582-3.359c-0.394-0.992-2.538,0.844-2.618-0.594c-0.086-0.688-0.222-1.602-0.792-2.074c-0.616-0.533-1.595-1.258-2.438-1.336c-0.9-0.08-1.799-0.164-2.699-0.246c-0.189-0.563,0.062-1.369,0.173-1.92c0.138-0.686,0.222-1.879,0.864-2.328c0.215-0.176,2.416-1.395,2.52-1.137c-0.085,0.684-0.606,2.313,0.494,2.371c0.395-0.033,0.626-0.131,0.691-0.297c-0.159-1.109-0.186-1.977,1.086-2.369c0.476,0.012,0.952,0.023,1.428,0.035c0.714,0.02,1.234,0.727,1.942,0.242c0.955-0.648,0.589-2.348,0.545-3.311c-0.02-0.436-0.04-0.867-0.061-1.305c-0.054-1.182,0.507-1.514,1.063-2.41c0.515-0.83-0.111-1.799,0.303-2.691c0.563-1.217,1.368-2.131,1.599-3.51c-1.944,0.133-3.031-0.031-3.261-0.492c-0.28-0.746-0.618-1.168-1.137-1.779c-1.339,0.014-2.679,0.023-4.019,0.035c-0.519,0.006-1.037,0.012-1.556,0.016c-0.373,0.004-0.66-0.838-1.183-0.58c-0.623,0.305-0.849,0.699-1.642,0.529c-1.235-0.309-1.293-2.051-1.358-3.049c-0.076-1.188-0.046-2.586-0.47-3.721c-0.726,0.727-1.163,1.102-1.062,2.209c0.043,0.465,0.155,0.982,0.003,1.436c-0.268,0.799-1.007,0.934-1.615,1.363c-0.543,0.387-0.623,1.164-1.103,1.639c-0.468,0.465-0.707,0.568-1.309,0.596c-0.911,0.039-1.545,0.131-2.375-0.225c-0.39-0.064-0.407,0.465-0.608,0.682c-0.348,0.375-0.906,0.529-1.386,0.637c-0.808,0.186-2.6,0.547-2.997-0.527c-0.516-1.139-1.202-1.445-2.391-1.135c-0.88,0.232-1.597,0.482-2.501,0.592c-0.611-0.656-1.089-1.232-2.05-1.32c-1.115-0.105-2.238,0.271-3.346,0.395c-2.11,0.23-4.875,0.311-5.422,2.904c-0.388-0.09-0.794-0.023-1.187-0.004c-0.81,0.047-1.06-0.947-1.727-1.281c-1.678-0.838-1.116,2.248-0.989,2.914c-0.198-0.723-0.742-1.15-1.631-1.283c-1.939,0.314-3.923,0.541-5.828,1.037c-1.841,0.48-3.926,1.754-5.876,1.51c-0.456-0.057-0.773-0.359-1.191-0.521c-0.373-0.143-0.798-0.199-1.186-0.297c-0.066,0.85,0.907,0.521,0.983,1.203c0.083,0.74-0.295,1.395,0.104,2.117c0.369,0.672,1.024,0.604,1.541,1.021c0.532,0.436,0.617,1.74,0.282,2.297c-0.145,0.24-0.309,0.146-0.515,0.242c-0.313,0.146-0.199,0.787-0.272,1.049c-0.256,0.912-1.187,0.453-1.651,1.045c-0.791,1.01,2.44,3.086,1.457,3.623c-0.628,0.25-1.08,0.539-1.631,0.938c-1.591,1.928,2.003,2.416,1.433,3.559c-0.244,0.395-0.644,0.66-1.07,0.83c-0.415,0.164-1.163,0.203-1.352,0.701c-0.182,0.486,0.583,0.813,0.872,1.012c0.535,0.367,0.676,0.809,0.99,1.334c0.529,0.885,2.054,0.713,2.861,1.375c0.87,0.715,0.57,2.031,1.503,2.654c0.363-1.648,1.701-1.338,2.859-2.166c0.683-0.486,1.221-1.174,1.784-1.787c0.366-0.367,1.917,1.07,2.343,1.313c0.748,0.426,1.569,0.682,2.301,1.141c1.268,0.793,2.228,1.922,3.311,2.93l0.049-0.838c-0.343-1.914,3.207-1.635,4.306-2.066c0.869-0.344,1.166-1.051,1.731-1.744c0.751-0.922,1.645-1.777,2.674-2.385c0.277-0.164,0.703-0.438,1.044-0.402c0.469,0.047,0.174,0.736,0.58,0.877c0.479,0.16,1.024,0.236,1.54,0.438c0.712,0.277,1.4,0.645,2.19,0.447c0.454-0.113,0.782-0.426,1.238-0.49c0.269-0.035,0.537-0.072,0.805-0.109c0.297,0.816,0.463,1.754,0.868,2.516c0.515,0.969,1.617,0.77,2.215,1.656c0.559,0.824,0.611,2.633,1.907,2.697c0.876,0.072,1.149,1.016,1.481,1.682c0.73,1.318,2.146,0.92,3.358,0.836c0.941-0.068,1.882-0.133,2.824-0.199c0.825-0.059,1.946,0.045,2.597-0.533c0.622-0.553,0.764-1.438,1.367-2.012c0.612-0.58,0.904-0.145,1.463,0.143c0.148,0.076,0.329,0.217,0.492,0.254c0.188,0.041,0.391-0.158,0.556-0.021c0.284,0.23,0.16,0.391,0.492,0.561c0.838,0.434,1.677,0.863,2.515,1.295c0.942,0.484,1.885,0.971,2.827,1.453c0.697,0.359,0.766,0.326,1.567,0.105c0.33-0.164,0.511-0.563,0.544-1.188c0-0.359-0.068-0.75-0.315-1.025c-0.258-0.291-0.723-0.439-0.723-0.9l0.939-2.123C124.663,259.382,124.202,258.919,122.917,258.955C121.796,258.986,124.202,258.919,122.917,258.955z");
    a4 = R.path("M70.989,285.583c-0.596-0.521-1.454-0.135-2.127-0.467c-0.686-0.338-0.693-1.291-1.354-1.588c-0.596-0.266-1.038,0.176-1.365-0.67c-0.354-0.912-0.284-2.012,0.202-2.857c0.116-0.232,0.337-0.629,0.664-0.57c0.298,0.057,0.576,0.367,0.868,0.076c0.376-0.527-0.425-1.252-0.527-1.771c-0.075-0.375-0.057-0.729-0.146-1.107c-0.233-0.998-0.822-1.91-0.874-2.939c-0.055-1.078,0.896-2.918,0.227-3.846c-0.513-0.711-0.678-1.293-0.889-2.139c-0.345-1.383-1.557-4.031-0.163-5.055c0.542-0.395,0.901-0.762,1.13-1.406c0.178-0.506,0.806-0.541,1.254-0.512c0.243-0.109,0.497-0.541,0.681-0.738c-0.868-0.58-0.619-1.754-1.306-2.473c-0.37-0.387-0.879-0.639-1.383-0.799c-0.508-0.16-1.133-0.115-1.515-0.541c-0.381-0.424-0.452-0.979-0.907-1.367c-0.327-0.277-1.101-0.527-1.139-1.037c-0.038-0.488,0.719-0.678,1.062-0.754c0.541-0.16,1.079-0.441,1.383-0.938c0.57-1.141-3.024-1.629-1.433-3.559c0.551-0.396,1.003-0.688,1.631-0.938c0.983-0.537-2.248-2.613-1.457-3.623c0.403-0.514,1.22-0.166,1.561-0.813c0.195-0.371,0.036-0.854,0.266-1.191c0.143-0.211,0.453-0.066,0.612-0.33c0.325-0.541,0.229-1.674-0.159-2.17c-0.433-0.551-1.273-0.438-1.663-1.148c-0.399-0.725-0.022-1.377-0.104-2.119c-0.046-0.41-0.348-0.389-0.651-0.521c-0.398-0.178-0.292-0.631-0.45-0.963c-0.422-0.881-1.942-0.605-2.8-0.648c-0.717-0.037-1.132-0.197-1.8,0.258c-0.644,0.438-1.51,1.621-2.397,0.973c-0.757-0.65-1.709-0.523-2.626-0.656c-0.737-0.105-1.438-0.613-2.148-0.637c-0.961-0.029-1.922-0.063-2.883-0.092c-1.582,0.906-1.742,2.357-2.079,3.955c-0.349,1.652-0.537,3.258-2.409,3.773c-1.027,0.283-1.623,1.094-2.503,1.625c-1.104,0.668-2.313,1.184-3.581,1.428c-1.428,0.275-2.862,0.27-4.309,0.283c-0.798,0.01-2.244,0.031-2.609,0.941c-0.384,1.098,2.1,1.695,2.718,1.875c0.717,0.201,3.177,0.74,3.063,1.879c-0.079,1.877-0.662,3.539-1.357,5.26c-0.1,0.248-0.501,1.076-0.174,1.313c0.343,0.229-0.727,1.088-0.84,1.188c-0.541,0.426-0.338,0.742,0.284,0.85c0.903,0.154,1.789,0.23,2.671,0.508c0.402,0.125,3.704,1.322,2.48,2.004l-4.1,0.443c-0.529-0.238,0.506-0.822,0.741-1.088c0.138-0.689-1.151-0.244-1.366-0.076c-0.601,0.471-0.897,1.178-1.596,1.541c-1.52,0.797-3.508,0.188-4.906-0.588c-1.338-0.744-2.911-1.783-2.799-3.506c0.064-0.996,0.595-1.949,0.983-2.854c0.079-0.861-2.167-0.635-1.976,0.248l0.197,1.877c-0.377,1.512-2.466,2.363-3.766,2.803c-0.752,0.254-1.542,0.422-2.339,0.418c-0.202-0.002-1.709-0.082-1.307-0.604l1.286-2.123c0.394-1.021,0.049-1.664-1.039-1.928c-0.345,0.016-0.69,0.029-1.035,0.045c-0.66,0.025-0.558,0.426-0.974,0.703c-0.567,0.377-1.588,0.066-2.256,0.258c-0.442,0.123-0.675,0.271-1.008,0.547c-0.625,0.518-1.252,1.033-1.878,1.551c-0.49,0.404-1.097,0.799-1.763,0.633c-0.677-0.17-1.335-0.541-1.856,0.168c-0.82,0.887,0.793,1.229-0.148,2.025c-0.349,0.299-0.506,0.713-0.363,1.16c0.107,0.336,0.41,0.734,0.018,1.016l-0.938,0.098c-0.46-0.086-1.117-0.277-1.197-0.828c-0.061-0.42,0.625-1.363-0.087-1.494c-0.805-0.182-1.994,0.59-2.47,1.188c-0.329,0.33-0.329,0.594,0,0.791l0.493,0.348c-0.349,0.584-0.885,0.953-1.147,1.617c-0.353,0.895-0.48,1.963-0.515,2.918c-0.042,1.186,0.3,2.523,1.761,2.232c0.713-0.051,1.425-0.098,2.138-0.145c0.513-0.035,2.332,0.023,1.518-0.846c-0.559-0.66-0.625-1.057-0.197-1.186c0.855-0.357,1.826,1.1,2.506,1.438c0.871,0.434,1.63,0.467,2.534,0.24c0.186-0.367-0.938-1.379-1.186-1.678c-0.067-0.23,0.033-0.33,0.296-0.299c0.82,0.045,1.421,0.801,1.827,1.434c0.225,0.346,0.57,0.688,1.019,0.604c0.377-0.066,0.658-0.484,1.06-0.426c0.682,0.096,0.48,1.221,1.224,1.33c0.653,0.098,1.61-0.965,2.183-0.322l0.544,0.445c1.241-0.389,2.429-0.893,3.698-1.203c1.213-0.297,3.969-1.307,4.948-0.082c0.203,0.453,1.186,3.279,1.829,2.768c0.79-0.703-0.859-2.492-1.086-3.262c1.728-0.223,3.356-0.447,5.094-0.4c1.176,0.033,2.353,0.066,3.529,0.1c0.346,0.01,1.287,0.186,1.311,0.615c0.013,0.23-0.626,0.273-0.775,0.383c-0.369,0.264-0.189,0.76-0.019,1.084l0.296,0.543c-0.606,0.17-1.438-0.146-2.047-0.242c-0.366-0.063-0.997,0.102-1.201,0.443c-0.345,0.576-0.612,0.836-1.347,0.836c-1.778,0.08-0.207-2.139-1.186-2.422c-0.382-0.189-0.728,1.828-0.783,2.012c-0.228,0.738-0.625,1.424-1.172,1.973c-0.17,0.17-2.363,2.354-2.442,2.193c0.091-0.41,0.801-2.594,0-2.473l-0.445,0.197c0.546,1.98-1.177,3.588-3.047,3.736c-1.321,0.104-2.651,0.17-3.968,0.314c-1.014,0.129-2.308,0.283-3.113,0.988c-1.136,0.883-2.608,0.961-3.942,1.34c-1.279,0.361-2.174,1.102-3.271,1.811c-0.499,0.32-1.011,0.545-1.546,0.795c-0.087,0.041-0.807,0.375-0.38,0.453c0.592,0.137,1.323,0.352,1.68,0.889c0.594,0.795,0.82-0.246,1.629,0.1c0.462,0.164,0.643,0.314,0.545,0.443c-0.361,0.166-2.075,0.67-1.384,1.188c0.526,0.43,0.757,0.891,0.691,1.385c-0.565,0.033-0.979,0.02-1.531-0.102c-1.069,0.758-2.119,1.402-3.426,1.67c-1.01,0.205-2.07,0.201-3.096,0.258c-0.289,0.098,0.438,1.387,0.4,1.805c-0.03,0.324-0.66,1.27-0.153,1.457c1.195,0,2.932-0.232,2.57,1.531l-0.89,3.111c-0.273,1.705,3.238-0.617,3.68-0.938c0.701-0.506,1.033-1.342,1.458-2.072c0.921-1.021,1.827-1.236,2.717-0.645c1.175,0.715,1.54,2.385,1.279,3.658c-0.258,1.264-1.406,1.441-2.465,1.729c-0.322,0.322,1.609,1.359,1.822,1.455c0.597,0.27,2.825,0.576,2.279,1.605l-0.494,0.939c1.484-0.428,4.666-0.75,5.138-2.422c0.605,0.121,1.025,0.191,1.63,0.121c0.399-0.051,0.798-0.1,1.198-0.148c0.557-0.064,1.137-0.729,1.632-1.016c1.216-0.701,2.743-1.277,4.115-1.59c0.44-0.102,0.969-0.072,1.116,0.438c0.099,0.344-0.098,1.529,0.586,0.959c0.24-0.229,2.297-2.445,2.62-2.123l0.147,0.543c0,0.813,0.897,0.021,1.136-0.197c0.677-0.65,1.536-1.096,2.398-1.449c1.745-0.717,3.712-1.207,5.603-1.264c0.456-0.016,4.746-0.791,4.746-0.646c-2.172,1.629-4.396,2.457-7.087,2.813c-0.983,0.131-2.101,0.111-2.975,0.629c-0.951,0.564-1.567,1.506-2.459,2.143c-0.226,0.16-2.048,0.863-2.003,1.037c0.62,0.619,1.763,1.301,1.333,2.322l-0.148,0.346c-0.16-0.451-0.41-0.803-0.9-0.928c-0.452-0.115-1.582,0.129-1.52-0.652c0.007-0.035,0.001-0.061,0.003-0.09l-0.991,1.078c0.883,0.883,1.588,2.006,1.612,3.289c0.012,0.664-0.166,1.346-0.279,1.998c0.099,0.787,1.552,0.471,1.989,0.256c1.038-0.508,1.75-1.43,2.572-2.205c0.731-0.689,1.621-1.348,2.645-1.484c0.413-0.059,2.311,0.172,2.379-0.52c0-1.104,0.763-1.748,1.433-2.568c0.707-0.021,1.433-0.107,2.131,0.01c0.917,0.152,1.637,0.225,2.56,0.164c1.468-0.096,2.858,0.533,4.352,0.123c1.47-0.402,1.858-2.359,3.324-2.623c0.887-0.158,1.774-0.32,2.661-0.479c0.515-0.096,1.034-0.193,1.519-0.396c0.217-0.094,0.545-0.24,0.598-0.504c0.091-0.547,0.42-0.607,0.832-0.855c0.693-0.422,0.702-1.391,1.337-1.922c0.561-0.471,0.796-0.479,0.641-1.252c-0.105-0.523-1.668-3.906-0.735-4.123c0.778-0.451,1.565-1.016,2.388-1.373c0.925-0.4,2.056-0.588,3.028-0.896c0.671-0.213,1.521-0.104,2.22-0.129c0.969-0.037,2.382,0.371,2.69-0.912C71.286,286.08,71.22,285.814,70.989,285.583C70.726,285.353,71.22,285.814,70.989,285.583z");
    a5 = R.path("M134.379,292.75c-0.205-1.229-0.735-2.322-1.452-3.332c-0.234-0.33-0.583-0.271-0.911-0.414c-0.384-0.168-0.701-0.482-0.977-0.791c-0.837-0.934-0.744-1.727-0.613-2.885c0.155-1.371-0.825-2.432-1.563-3.477c-0.522-0.742-0.808-1.289-1.106-2.146c-0.21-1.02-1.146-1.234-2.062-1.1c-0.773,0.115-1.352,0.191-2.137,0.16c-0.177-0.313-0.292-2.176,0.148-2.176h0.543c1.205,0.201,1.344-2.031,1.525-2.834c0.059-0.264,0.582-0.348,0.686-0.627c0.185-0.492,0.371-0.984,0.556-1.479c0-1.039-2.5-0.871-3.069-1.664c-0.826-1.148-0.233-2.92-0.981-4.166c-0.353,0-0.745-0.031-1.055-0.219c-0.285-0.174-0.38-0.49-0.712-0.613c-0.75-0.279-1.76,0.021-2.544,0.039c-0.449,0.012-1.044,0.074-1.385-0.285c-0.546-0.574-0.443-1.457-0.616-2.168c-0.36-0.186-0.723-0.488-1.148-0.359c-0.166-0.426-0.57-0.523-0.957-0.723c-1.271,0.053-1.356,2.238-2.556,2.652c-0.698,0.242-1.668,0.164-2.396,0.217c-0.814,0.057-1.63,0.113-2.444,0.172c-1.213,0.084-2.628,0.484-3.358-0.836c-0.293-0.59-0.542-1.447-1.254-1.641c-0.527-0.145-0.885-0.17-1.217-0.67c-0.376-0.564-0.454-1.262-0.784-1.854c-0.555-0.994-1.66-0.799-2.229-1.668c-0.509-0.781-0.668-1.842-0.988-2.721c-0.697,0.1-1.083,0.242-1.727,0.498c-0.849,0.338-1.558,0.023-2.342-0.279c-0.495-0.191-1.009-0.49-1.533-0.48c-0.438,0.01-0.365-0.385-0.48-0.676c-0.181-0.459-0.817-0.09-1.095,0.057c-1.033,0.545-1.924,1.379-2.682,2.256c-0.57,0.66-0.925,1.533-1.746,1.914c-0.976,0.449-2.041,0.451-3.076,0.648c-0.788,0.148-1.593,0.574-1.428,1.5l-0.049,0.84c-1.083-1.01-2.042-2.139-3.311-2.932c-0.732-0.457-1.553-0.715-2.301-1.141c-0.426-0.242-1.977-1.68-2.343-1.313c-0.833,0.912-1.627,1.936-2.848,2.336c-0.744,0.244-1.299,0.27-1.633,1.084c-0.258,0.629,0.146,1.346-0.843,1.271l-3.05,3.322c0.008,1.057,0.481,2.258,0.738,3.285c0.106,0.428,0.213,0.854,0.32,1.283c0.169,0.674,0.791,1.133,0.829,1.803c0.053,0.943-0.335,1.877-0.392,2.818c-0.058,0.975,0.453,1.604,0.66,2.486c0.111,0.477,0.222,0.947,0.333,1.424c0.095,0.406,0.009,0.732,0.227,1.139c0.186,0.342,0.616,0.805,0.322,1.215c-0.292,0.291-0.569-0.021-0.868-0.076c-0.327-0.059-0.547,0.338-0.664,0.57c-0.455,0.793-0.517,1.734-0.283,2.609c0.219,0.816,0.572,0.83,1.285,0.877c0.676,0.047,0.823,1.166,1.328,1.52c0.704,0.49,1.664,0.008,2.313,0.576c0.231,0.23,0.297,0.494,0.198,0.791c-0.299,1.244-1.595,0.869-2.534,0.904c-0.746,0.027-1.661-0.092-2.376,0.137c-0.899,0.283-1.856,0.477-2.738,0.781c-0.93,0.324-1.825,0.992-2.678,1.486c-0.926,0.215,0.567,3.424,0.685,3.9c0.155,0.629,0.193,0.908-0.335,1.275c-0.317,0.223-0.612,0.492-0.807,0.83c-0.22,0.383-0.239,0.82-0.583,1.137c-0.25,0.229-0.625,0.262-0.837,0.525c-0.21,0.266-0.149,0.588-0.439,0.795c-0.467,0.332-1.113,0.449-1.666,0.551c-0.941,0.172-1.883,0.34-2.825,0.51c-1.376,0.248-1.753,1.99-2.983,2.5c-1.562,0.646-3.022-0.104-4.58-0.002c-1.635,0.104-3.201-0.209-4.849-0.164c-0.67,0.82-1.433,1.467-1.433,2.566c-0.064,0.646-1.78,0.479-2.152,0.498c-0.999,0.057-1.892,0.639-2.621,1.277c-0.88,0.773-1.585,1.736-2.62,2.326c-0.437,0.25-2.08,0.748-2.193-0.148c0.114-0.65,0.292-1.334,0.279-1.996c-0.024-1.283-0.729-2.406-1.612-3.289c-0.285,0.758-0.837,1.115-1.532,1.434c0-0.443,0.871-1.396,0.197-1.729c-0.555-0.188-1.067,0.518-1.448,0.805c-0.712,0.533-1.484,0.771-2.36,0.852c-0.786,0.07-1.583,0.232-2.292,0.594c-0.406,0.207-1.354,0.77-0.521,1.111l1.779,0.396c1.074,0.355-0.83,2.191-1.35,2.344c-0.681,0.195-1.472,0.424-2.145,0.527c-0.638,0.1-1.168,0.201-1.803,0.109c-0.679-0.102-2.091-0.697-2.509-0.018c-0.492,0.633,1.217,1.434,1.519,1.746c0.511,0.525,0.75,2.063-0.142,2.406c-0.416,0.16-1.053-0.256-1.541-0.18c-0.343,0.055-0.512,0.176-0.852,0.152c-0.584-0.041-1.167-0.084-1.751-0.125c-0.719,0.42-0.078,1.027-0.488,1.658c-0.086,0.133-1.111,1.156-0.846,1.354c1.072-0.602,2.074-1.35,3.363-1.279c0.542,0.029,1.083,0.061,1.625,0.088c0.588,0.031,0.873,0.443,1.239,0.848c1.093,0.873,2.825-0.854,3.828-1.188c0.794-0.266,1.715-0.148,2.545-0.148c0.699-0.521,0.254-1.607,0.988-2.225c1.813-0.1,3.625-0.197,5.437-0.299c0.638-0.035,1.236-0.107,1.87-0.209c0.556-0.088,0.882-0.227,1.406-0.41c0.696-0.24,1.831,0.068,1.959-0.957v-0.297c0.217,0.289,0.415,0.666,0.753,0.824c0.598,0.277,1.135-0.125,1.729-0.047c0.348,0.045,0.351,0.416,0.677,0.465c0.455,0.07,0.971-0.131,1.389-0.279c1.499-0.529,2.869-1.438,4.255-2.205c0.711-0.395,1.237-0.881,1.434-1.719c0.117-0.496-0.025-1.275,0.335-1.688c0.399-0.459,0.609,0.395,0.593,0.645c0,1.111,0.843,2.359,1.917,2.74c0.445,0.158,0.957-0.383,1.233-0.648c0.076-0.072,1.006-1.242,0.9-0.607c-0.247,1.086-0.475,2.123-0.865,3.162c-0.152,0.406-0.199,0.898-0.594,1.104c-0.669,0.35-1.338,0.695-2.007,1.043c-0.935,0.484-2.071,0.646-3.082,0.922c-1.72,0.471-3.437,0.936-5.118,1.535c-2.411,0.865-4.98,1.813-7.146,3.205c-0.444,0.287-0.596,0.74-0.977,1.008c-0.832,0.584-1.902,0.77-2.696,1.434c-0.515,0.432-0.093,0.688,0.403,0.783c1.199,0.232,2.329-0.395,3.397-0.844c0.935-0.389,2.07-0.271,2.929-0.742c0.585-0.318,1.028-0.818,1.66-1.066c0.383-0.15,0.801-0.18,1.202-0.27c1.215-0.273,2.213-0.891,3.408-1.244c0.136-0.047,2.918-0.869,2.608-0.225c-0.479,0.994-2.234,1.691-3.104,2.229c-0.699,0.432-1.357,0.939-1.895,1.563c-0.432,0.5-0.658,1.076-1.258,1.4c-1.632,0.885-3.612,0.672-5.294,1.355c-0.693,0.283-1.363,0.879-1.993,1.283c-0.274,0.178-2.478,1.176-1.861,1.682l0.592,0.396c0.685,0.459-1.026,1.771-0.345,2.416c0.318,0.299,1.975-1.031,2.47-1.133c0.461-0.131,0.576,0.051,0.346,0.545c0.672-0.014,1.344-0.025,2.015-0.037c0.378-0.008,0.531,0.008,0.873-0.176c0.071-0.039,1.029-0.541,0.621-0.678c-0.66-0.254-0.158-1.025,0-1.58c0.141-0.635,1.54-0.465,1.976-0.557c0.28-0.059,0.607-0.184,0.71-0.479c0.101-0.287-0.094-0.936,0.377-0.992c0.562-0.188,0.818,1.063,0.914,1.369c0.181,0.574,0.566,1.066,1.21,1.102c0.281-0.061,0.561-0.121,0.841-0.184c0.405-0.088,0.634-0.396,1.042-0.525c0.552-0.176,1.255-0.148,1.59-0.715c0.273-0.463,0.071-1.176,0.775-1.293c0.263-0.033,0.411,0.016,0.445,0.145l-0.099,0.348c-0.157,1.023,3.362,0.193,3.833,0.064c0.565-0.154,1.149-0.396,1.046-1.104c-0.047-0.322-0.77-1.596,0.11-1.188c0.71,0.385,1.03,1.438,1.927,1.285c0.263-0.033,0.313,0.215,0.149,0.742c-0.324,0.416-0.648,0.832-0.972,1.248c-0.254,0.326-0.518,0.521-0.382,0.984c0.131,0.451,0.534,1.055,1.007,0.582c0.776-0.801,2.093-2.662,3.409-2.225c0.499,0.133,0.344,0.566,0.109,0.885c-0.393,0.533-0.714,0.953-0.909,1.607c-0.149,0.5-0.291,1.021-0.843,1.209c-0.365,0.123-1.271,0.057-1.271,0.646c-0.074,0.738,1.347,0.895,1.85,0.83c1.156-0.146,2.258-0.781,3.239-1.369c0.25-0.15,1.141-0.916,1.417-0.447c0.207,0.352,0.052,0.773,0.648,0.662c0.282-0.055,0.903-0.352,0.991,0.135c0.084,0.465-0.103,0.924,0.6,0.832c1.031-0.273,0.748-1.416,1.452-2.094c0.422-0.404,0.844-0.813,1.266-1.219c0.436-0.375,0.257,0.734,0.812,0.654c0.363-0.053,0.738-0.285,1.066-0.439c0.626-0.299,2.213-0.744,2.074-1.646c-0.41-0.684-0.83-1.338-1.137-2.074l0.445-0.051c0.593,0.211,1.028,0.723,1.356,1.238c0.261,0.408,0.429,0.299,0.914,0.309c0.948,0.018,1.686,0.082,2.574-0.23c1.087-0.385,2.628-0.828,3.642-0.02c0.826,0.662,0.704,1.814,0.704,2.756c0.322-0.322,1.001-1.355,1.51-1.123c0.422,0.193,0.981,0.148,1.454,0.186c0.413-0.252,0.754-0.641,0.727-1.15c-0.036-0.654-0.351-1.018,0.412-1.254c1.156-0.357,1.171-1.102,0.295-1.844l-0.396-0.494c0.865-0.08,1.551,0.021,2.174-0.645c0.273,1.586,1.385,1.229,2.546,1.846c0.43,0.229,0.826,0.479,1.31,0.578c0.321,0.066,0.795-0.066,1.083,0.088c0.514,0.277-0.368,1.156,0.596,1.295c0.649,0.127,1.542,0.338,2.18,0.045c0.656-0.301,0.088-0.959,0.201-1.449c0.182-0.789,1.186-0.912,0.847-1.758c-0.167-0.418,0.493-2.043-0.165-1.979c-0.806,0.092-1.646-0.229-2.371-0.543c-1.008-0.402-0.803-0.721,0.2-0.77c0.691-0.035,1.074,0.402,1.699,0.463c0.25,0.025,0.447-0.313,0.818-0.238c0.372,0.125,1.117-0.504,1.235-0.346c0.227,0.83,0.4,1.643,1.383,1.828c1.062-0.156,2.391-0.586,3.465-0.428c1.046,0.152,1.038,1.621,1.389,2.402c0.229,0.514,0.606,0.916,0.878,0.197c0.347-1.107-0.807-2.607-0.129-3.5c0.372-0.488,1.192-2.025,1.907-1.885c0.779,0.281-0.232-2.225-0.592-1.436c-0.253,0.381-1.499,0.043-1.885,0.002c-0.966-0.102-1.706-0.08-2.385-0.922c-0.846-1.045-1.27-2.506-1.807-3.723c-0.394-0.727-0.263-0.709,0.396,0.049c0.782,1.162,1.949,3.787,3.458,4.002l2.322-0.396c1.537-0.293,1.313,3.1,2.274,2.617c0.36-0.24,0.721-0.48,1.081-0.723c0.248-0.164,0.708-0.002,0.994,0.031c0.486,0.139,0.631-0.672,0.872-0.92c0.376-0.387,0.852-0.105,1.223-0.34c0.273-0.174,0.549-0.344,0.82-0.521c0.567-0.564,1.045-0.229,1.701-0.129c0.644,0.098,0.841-0.404,1.127-0.857c0.366-0.582,0.673-0.188,1.135-0.443c0.925-0.514,1.11-2.572,0.532-3.361c-0.346-0.52,0.767-0.734,1.03-0.871c0.526-0.271,0.928-0.729,0.897-1.35l-0.149-0.99c-0.462,0.084-2.329-0.855-1.63-1.137c0.495-0.229,0.742-0.461,0.742-0.691l-0.248-0.346c-0.362-0.051-2.625-0.162-2.076-0.986c0.534-0.971,0.809-2.5-0.333-3.146c-0.709-0.4-1.503-0.361-2.285-0.361c-0.165,0-0.099-0.049,0.197-0.148c0.93-0.229,0.09-1.275-0.197-1.729c-0.123-0.305,0.541,0.111,0.621,0.156c0.41,0.225,0.82,0.449,1.23,0.676c0.574,0.314,1.206,0.289,1.855,0.354c0.263-0.463,0.493-0.676,0.69-0.643c0.397,0.439,0.478,0.5,1.063,0.592c0.654,0.104,1.467,0.051,1.925,0.607c0.582,0.709,0.91,0.611,1.739,0.504c0.666-0.084,1.617,0.01,2.092-0.518c0.165-0.197,0.297-0.115,0.396,0.246c0.208,0.975-0.764,1.354-1.433,1.828c-0.716,0.797,1.412,0.682,0.939,1.631c-0.455,0.813-1.705,0.061-2.31,0.801c-0.23,0.281-0.422,0.838-0.825,0.932c-0.443,0.104-0.616,0.039-0.917,0.492c-0.668,0.867,0.401,1.221,0.099,2.025c-0.355,0.65,3.631,0.834,4.162,1.17c0.818,0.52,1.371-0.52,1.986-0.926c0.617-0.4,1.273-0.389,1.974-0.4c0.877-0.02,1.724,0.055,2.555-0.229c0.986-0.334,1.973-0.668,2.959-1c-0.091-0.314-0.402-0.383-0.601-0.65c-0.241-0.326-0.292-0.734-0.239-1.127c0.169-1.938,8.594-1.637,8.103-2.867c-0.289-0.914-0.528-0.541-1.209-0.732c-0.448-0.125-0.931-1.207-0.718-1.639c0.105-0.361,1.092,0.441,1.501,0.215c0.468-0.26,0.846-0.809,1.201-1.203c0.283-0.316,0.544-0.631,0.873-0.891c0.755-0.59,0.271-1.988-0.066-2.666h0.196c-0.899-0.201-1.852-0.238-2.766-0.346C134.857,294.412,134.512,293.8,134.379,292.75C134.214,291.759,134.512,293.8,134.379,292.75z");
    a6 = R.path("M186.552,280.001c-0.701-0.352-0.211-1.246-0.035-1.773c0.268-0.799,0.631-1.613,0.48-2.477c-0.908-1.008-1.381-2.367-2.076-3.557c-0.941,0.578-0.869,1.844-1.779,2.42c-1.117,0.596-0.273-1.557-1.531-1.088c-0.625,0.223-0.785,0.098-1.02-0.441c-0.275-0.629-0.875-0.541-1.396-0.826c-0.477-0.258-0.791-0.969-1.287-1.107c-0.469-0.129-0.965,0.293-1.27,0.596c-0.781,0.775-1.281,2.402-2.586,2.328c-0.701-0.182-0.934-1.645-1.602-2.047c-0.6-0.359-0.99-0.961-1.209-1.613c-0.279-0.84-0.396-1.281-0.975-1.945c-0.445-0.512-0.238-1.229-0.664-1.77c-0.313-0.398-0.746-0.658-1.17-0.924c-0.664-0.412-1.328-0.826-1.992-1.238c-0.908,1.135-2.869,1.684-3.654,0.082c-0.396-0.807-0.428-0.85-1.291-0.918c-0.998-0.082-1.861-0.582-2.771-0.951c-1.287-0.521-2.803-0.676-4.184-0.563c-2.006,0.166-4.014,0.332-6.02,0.498c-0.533,0.045-4.078-0.012-4.266,0.613c-0.299,1.756-1.197,4.061,0.281,5.449c0.514,0.48,1.039,1.096,1.24,1.783c0.193,0.658,0.461,4.102-1.027,3.439l-1.482-0.445c-0.627,0-0.873,0.68-1.48,0.693c-0.432-0.594-0.832-1.045-1.559-1.285c-1.119-0.373-2.341-0.066-3.433-0.531c-0.676-0.287-1.093-0.912-1.58-1.438c-0.264-0.281-1.01-0.178-1.385-0.207c-1.054,0.199-1.499,0.678-1.334,1.436c0.104,0.469,0.438,1.23-0.049,1.58c-1.793,0.057-3.477-0.203-5.258-0.439c-0.491-0.066-1.28-0.193-1.438,0.504c-0.179,0.795-0.314,2.951-1.506,2.752h-0.543c-0.44,0-0.326,1.863-0.148,2.176c0.785,0.031,1.364-0.047,2.137-0.162c0.916-0.135,1.852,0.08,2.062,1.102c0.32,0.92,0.654,1.504,1.216,2.301c0.302,0.43,0.621,0.852,0.915,1.285c0.784,1.162,0.306,2.047,0.389,3.295c0.064,0.967,0.848,2.023,1.739,2.418c0.328,0.145,0.677,0.082,0.911,0.412c0.161,0.229,0.292,0.502,0.438,0.736c0.383,0.619,0.707,1.189,0.877,1.908c0.19,0.811,0.172,2.219,1.173,2.516l2.52,0.297c-0.464-0.727-1.009-1.33-1.581-1.979c-0.214-0.631,1.122-0.861,1.482-0.938c-0.56,0.266-0.758,0.525-0.592,0.791c0.567,0.457,1.172,0.891,1.714,1.377c1.055,0.945-0.495,2.758,0.657,3.465c0.695,0.377,1.104-0.281,1.709-0.242c0.422,0.025,0.842,0.053,1.264,0.078c0.529,0.035,0.863,0.584,1.461,0.646c0.617,0.063,1.029-0.154,1.543-0.432c0.193-0.32-0.256-0.369-0.377-0.596c-0.191-0.357,0.125-0.814,0.328-1.086c1.158-1.695,3.125-0.299,4.713-0.957c0.98-0.406,2.338-0.646,2.631-1.814c0.215-0.855-0.043-1.832,0.471-2.605c0.52-0.781,1.602-0.633,2.26-1.23c0.596-0.539-0.898-0.355-1.148-0.371c-0.537-0.027-1.074-0.059-1.611-0.088c-0.408-0.254-0.396-0.975-0.396-1.381c0-0.084-0.096-1.682-0.502-1.166c-0.328,0.42-0.139,0.924-0.607,1.301c-0.232,0.188-1.406,0.553-1.455,0.646c0.064-0.131,0.285-0.26,0.393-0.338c0.375-0.234,0.479-0.787,0.543-1.188c0.072-0.615,0.57-0.953,1.135-1.086c0.447-0.268,0.844-0.742,1.234-1.088c0.211-0.262,1.355,1.801,1.482,1.938c0.57,0.619,1.172-1.338,1.73-1.643c0.635-0.082,1.324-0.094,1.947-0.232c1.512-0.342,2.232-1.902,3.932-1.842c1.588-0.012,3.143-0.398,4.729-0.334c1.791,0.074,3.57,0.412,5.34,0.672c0.66,0.098,1.354,0.268,2.023,0.217c0.77-0.059,1.48-0.385,2.088-0.852c0.338-0.307,1.055-1.002,1.582-0.74l1.383,0.543c-0.244-0.385-1.203-1.238-0.641-1.631c0.746-0.6,1.664,0.484,2.174,0.938l-1.137,1.729c-0.66,0.789-0.461,1.07,0.592,0.84c0.533-0.104,1.064-0.213,1.602-0.318c0.693-0.141,1.221-0.014,1.91-0.082c1.521-0.148,2.406-1.857,3.258-2.957C187.359,280.578,187.146,280.296,186.552,280.001C186.224,279.837,187.146,280.296,186.552,280.001z");
    a7= R.path("M215.97,119.858l-0.07-0.332c-0.523,0.05-1.098,0.168-1.623,0.068c-0.881-0.169-1.783-1.19-1.836-2.093c-0.063-0.625,0.217-0.922,0.842-0.889c0.049,0,0.1,0,0.146,0c0.512-0.073-0.473-1.297-0.559-1.587c-0.174-0.577-0.203-1.396-0.07-1.99c0.182-0.815,1.217-1.288,1.438-2.145c0.359-1.402-0.479-3.301-1.678-4.079c-0.313-0.202-0.887-0.466-1.268-0.334c-0.586,0.205-0.953,1.074-1.668,0.993c-0.49,0.072-0.771-0.477-1.084-0.754c-0.412-0.366-0.75-0.417-1.248-0.557c-0.928-0.261-1.414-1.697-1.689-2.483c-0.186-0.525-0.33-1.066-0.408-1.618c-0.068-0.488,0.041-1.102-0.219-1.542c-0.479-0.811-2.014-0.417-1.873-1.692c0.033-0.658,0.215-0.922,0.543-0.79c0.105-0.026,0.219-0.012,0.297,0.049c0.67-1.228-0.283-2.167-0.146-3.458l0.246,0.049c-0.018-0.541-0.082-1.157-0.367-1.632c-0.303-0.507-0.936-0.457-1.281-0.918c-0.389-0.522-0.313-1.311-0.648-1.896c-0.289-0.502-0.689-0.996-1.148-1.353c-0.693-0.538-1.385-1.077-2.078-1.615c-0.588-0.458-1.438-1.364-2.23-1.231c-1.123,0.092-1.314,1.449-1.898,2.157c-0.721,0.875-1.445,1.751-2.166,2.626c-0.906,1.097-1.775,1.543-3.139,1.884c-0.643,0.161-0.904,0.504-0.949,1.188c-0.051,0.449-0.246,0.864-0.613,1.14c-0.32,0.243-0.936,0.399-0.723,0.936c0.236,0.824,1.143,1.488,1.643,2.156c0.457,0.611,0.945,1.353,0.979,2.143c0.047,0.789-0.102,1.631-0.148,2.421c-0.291,0.686-1.512,0.043-1.977,0c-1.463-0.137-3.139,1.281-3.602,2.614c-0.236,0.688-0.07,1.473-0.215,2.192c-0.145,0.725-0.953,3.424-2.014,3l-0.098-0.148c-0.314,0.148-1.537,0.735-1.037,1.235c0.551,0.312,1.104,0.623,1.656,0.935c0.74,0.417,1.016,0.483,1.752,0.053c1.025-0.752,2.563,1.009,3.393,1.372c1.117,0.49,1.814-0.173,2.635-0.828c0.438-0.217,0.732,0.226,1.01,0.475c0.305,0.272,0.701,0.364,1.102,0.313c0.992-0.129,1.627-0.489,2.287,0.546c0.471,0.822,1.264,1.225,1.768,1.964c0.553,0.812,0.584,1.583,1.543,2.088c0.857,0.514,0.645,1.488,1.328,2.053c0.672,0.551,1.33,0.776,1.877,1.521c0.635,0.862,1.006,1.895,1.736,2.688c0.563,0.611,1.504,0.755,1.629,1.693c0.02,0.343-0.018,0.709-0.197,1.01c-0.17,0.282-0.502,0.364-0.668,0.632c-0.32,0.521,0.455,0.58,0.768,0.596c0.471,0.024,0.914,0.026,1.344,0.259c0.357,0.193,1.004,1.272,1.273,1.208v0.543c0.625-0.197,1.055-0.197,1.285,0l0.395,0.643c0.324,0.97,1.67,0.618,2.371,0.396c0.348-0.764,1.555-1.031,2.225-1.383c0.012,0.009,0.014,0.017,0.023,0.026C216.537,128.134,214.193,123.435,215.97,119.858z");

    [a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,a1,a2,a3,a4,a5,a6,a7].each(function(ele){ele.attr(attr)});
    mapEvents();
}

function mapEvents(){
    window.repGroups.each(function(array,index){
        array = array.split(",");
        //array = array.clean();
        //window.allrepGroups[index];
        array.each(function(ele){
            if(ele != ""){
                //window.allrepGroups[index] = (eval(ele));
                
                eval(ele).mouseover(function () {
                    window.RepAccordion.display(index);
                    array.each(function(el){
                        if(el != ""){  
                            eval(el).attr(hover);
                        }
                    });
                }).mouseout(function () {
                    array.each(function(el){
                        if(el != ""){
                            eval(el).attr(attr)
                        }
                    });
                });
            }
        });
    });
}

function accordEvents(index,mode){
    array = window.repGroups[index.toInt()].split(",");
    switch(mode){
        case 'mouseover':
            array.each(function(el){
                if(el != ""){  
                    eval(el).attr(hover);
                }
            });
            break;

        case 'mouseout':
            array.each(function(el){
                if(el != ""){  
                    eval(el).attr(attr);
                }
            });
            break;
    }
}

function popupwin(){
    $$('.DIpopup').each(function(el){
        el.addEvent('click',function(e){
            e.stop();
            switch(e.target.get('tag')){
                case 'img':
                    url = e.target.getParent('a').get('href');
                    break;
                    
                case 'a':
                    url = e.target.get('href');
                    break;
                }
            console.log(url);
            var opts = "resizable=true,scrollbars=false,height=240,width=320";
            popwin = window.open(url, 'macklead',opts );
            popwin.focus(); 
        });
    })
}
