2022-04-25 13:25:20 +02:00
package MEPTL ;
import java.text.DecimalFormat ;
import java.util.ArrayList ;
2022-05-09 21:22:50 +02:00
2022-04-25 13:25:20 +02:00
import cXML.node ;
2022-06-16 16:45:48 +02:00
import evaluer.evaluation ;
2022-04-25 13:25:20 +02:00
/ * *
*
2022-05-09 21:22:50 +02:00
* @author pablo rodriguez
2022-04-25 13:25:20 +02:00
*
* /
public class HTML {
// Titre principaux des analyses avec identifiant pour lien
public static String H1 ( String txt , String id ) {
2022-05-10 21:02:22 +02:00
txt = sautLigneAvantTitre ( id ) + " <h1 class= \" western \" align= \" center \" style= \" margin-left: 3cm; margin-right: 3cm; margin-bottom: 0cm; border: 2.00pt solid #FF0000; padding: 0.3cm 0.1cm; line-height: 100% \" > \ r \ n " +
2022-04-25 13:25:20 +02:00
" <font size= \" 5 \" style= \" font-size: 20pt \" ><b> " + txt + " </b></font></h1><br> \ r " ;
return txt ;
}
// Titre principaux des analyse
public static String H1 ( String txt ) {
txt = " <h1 class= \" western \" align= \" center \" style= \" margin-left: 3cm; margin-right: 3cm; margin-bottom: 0cm; border: 2.00pt solid #FF0000; padding: 0.3cm 0.1cm; line-height: 100% \" > \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 20pt \" ><b> " + txt + " </b></font></h1><br> \ r " ;
return txt ;
}
2022-05-10 21:02:22 +02:00
2022-04-25 13:25:20 +02:00
// Titre 2
public static String H2 ( String txt ) {
txt = " <H2> " + txt + " </H2> " ;
return txt ;
}
2022-12-16 17:50:51 +01:00
2022-04-25 13:25:20 +02:00
// Titre 2
public static String H2 ( String txt , String id ) {
2022-05-10 21:02:22 +02:00
txt = sautLigneAvantTitre ( id ) + " <H2> " + txt + " </H2> " ;
2022-04-25 13:25:20 +02:00
return txt ;
}
// Titre 3
public static String H3 ( String txt ) {
txt = " <H3> " + txt + " </H3> " ;
return txt ;
}
// paragraphe class pablo
public static String Ppablo ( String txt ) {
return " <p class= \" pablo \" > " + txt + " </p> " ;
}
/ * *
* Style HTML pour paragraphe style class p1
* @param txt
* @return
* /
public static String Paragraph_classp1 ( String txt ) {
return ( " <p class= \" p1 \" > " + txt + " </p> " ) ;
}
/ * *
* Style HTML pour paragraphe style class p11
* @param txt
* @return
* /
public static String Paragraph_classCommentaire ( String txt ) {
return ( " <p class= \" commentaire \" > " + txt + " </p> " ) ;
}
/ * *
* Style HTML pour paragraphe style class p1
* @param txt
* @return
* /
public static String Paragraph_classp1 ( String txt , String id ) {
2022-05-10 21:02:22 +02:00
return sautLigneAvantTitre ( id ) + " <p class= \" p1 \" > " + txt + " </p> " ;
2022-04-25 13:25:20 +02:00
}
// paragraphe avec la class p5 fond ROUGE pour erreur
public static String Paragraph_classp5 ( String txt ) {
return ( " <p class= \" p5 \" > " + txt + " </p> " ) ;
}
// paragraphe avec la class p5 fond ROUGE pour erreur
public static String Paragraph_classp6 ( String txt ) {
return ( " <p class= \" p6 \" > " + txt + " </p> " ) ;
}
// style avec la class p7 fond VERT pour correct
public static String Paragraph_classp7 ( String txt ) {
return ( " <p class= \" p7 \" > " + txt + " </p> " ) ;
}
2022-05-10 21:02:22 +02:00
//Saut de page puis titre
public static String SautLigneOnduleBleu ( String titre , String id ) {
return sautLigneAvantTitre ( id ) + " <p class= \" p9 \" > " + titre + " </p> \ r " ;
}
//Saut de page puis titre
2022-04-25 13:25:20 +02:00
public static String SautLigneOnduleBleu ( String titre ) {
2022-05-10 21:02:22 +02:00
return " <p class= \" p9 \" > " + titre + " </p> \ r " ;
2022-04-25 13:25:20 +02:00
}
2022-05-10 21:02:22 +02:00
//Saut de page puis titre
public static String SautP8 ( String titre , String id ) {
return sautLigneAvantTitre ( id ) + " <p class= \" p8 \" > " + titre + " </p> \ r " ;
}
//Saut de page puis titre
2022-04-25 13:25:20 +02:00
public static String SautP8 ( String titre ) {
return " <br><p class= \" p8 \" > " + titre + " </p> \ r " ;
}
2022-12-12 11:49:47 +01:00
//Saut pour les marques nodes
public static String SautP11 ( String titre ) {
2022-12-13 15:32:28 +01:00
return " <br><div id= \" grad1 \" ><p class= \" p11 \" ><b><u> " + titre + " </u></b> ** supprimer la méthode marquage des nodes avant de fournir le feedback aux étudiants ** </p></div> \ r " ;
}
//Saut pour les informatons nodes
2022-12-14 10:33:48 +01:00
public static String SautInformation ( String titre ) {
return " <br><div id= \" grad2 \" ><p class= \" pablo \" > " + titre + " </p></div> \ r " ; //style=\"font-size:12px\"
2022-12-12 11:49:47 +01:00
}
2022-04-25 13:25:20 +02:00
/ * *
* Un saut de ligne
* @return
* /
public static String SautLigne ( ) {
return " <br> \ r " ;
}
2022-05-10 21:02:22 +02:00
public static String sautLigneAvantTitre ( String id ) {
return " <br><br><br><br id= \" " + id . replace ( " # " , " " ) + " \" ><br><br><br><br><br> " ;
}
2022-04-25 13:25:20 +02:00
/ * *
* Un saut de ligne puis un trait horizontal sans style
* @return
* /
public static String SautLigneEtBordure ( ) {
return " <br><hr> \ r " ;
}
// Entête des tables pour les styles de paragraphe, styles de page, etc...
public static String TableEnteteTableurSynthese ( ) {
return " <table width= \" 80% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
" <col width= \" 30% \" /><col width= \" 20% \" /><col width= \" 20% \" /><col width= \" 20% \" /><col width= \" 10% \" /> " +
" <tr valign= \" top \" > "
+ " <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm; background:#000000 \" ><p> \ r \ n " +
" <font color= \" #ffffff \" ><b>Sous partie</b></p></td> \ r \ n " +
" <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm; background:#000000 \" > \ r \ n " +
" <font color= \" #ffffff \" ><b>Proportion (%)</b></p></td> \ r \ n " +
" <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm; background:#000000 \" > \ r \ n " +
" <font color= \" #ffffff \" ><b>Nombre de points</b></p></td> \ r \ n " +
" <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm; background:#000000 \" ><p> \ r \ n " +
" <font color= \" #ffffff \" ><b>Points gagnés</b></p></td> \ r \ n " +
" <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm; background:#000000 \" ><p> \ r \ n " +
" <font color= \" #ffffff \" ><b>Coef.</b></p></td> \ r \ n " +
" </tr> \ r \ n " +
" </table> " ;
}
2022-12-03 09:29:47 +01:00
public static String TablePointsSyntheseStyle2 ( String titre , double prop , String pointstotal , String pointsgagnes ) {
String propRed = Integer . toHexString ( 255 - ( int ) Math . round ( Math . pow ( prop , 3 ) * 255 ) ) ;
String propGreen = Integer . toHexString ( ( int ) Math . round ( Math . pow ( prop , 3 ) * 255 ) ) ;
if ( propRed . length ( ) = = 1 ) propRed = " 0 " + propRed ;
if ( propGreen . length ( ) = = 1 ) propGreen = " 0 " + propGreen ;
String color = " # " + propRed + propGreen + " 40 " ;
DecimalFormat df = new DecimalFormat ( " ###.## " ) ;
if ( prop > = 0 ) return " <table width= \" 80% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
" <col width= \" 30% \" /><col width= \" 20% \" /><col width= \" 20% \" /><col width= \" 20% \" /><col width= \" 10% \" /> "
+ " <tr valign= \" top \" > "
+ " <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> " +
" <font size= \" 4 \" > " + titre + " </font></p></td> "
+ " <td width= \" 20% \" align= \" center \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> " +
" <b><span size \" 6 \" style= \" color: " + color + " \" >█► </span> " + df . format ( prop * 100 ) + " %</b></p></td> "
+ " <td width= \" 20% \" align= \" center \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> " +
pointstotal + " </p></td> "
+ " <td width= \" 20% \" align= \" center \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> " +
pointsgagnes + " </p></td> "
+ " </tr> \ r \ n " +
" </table> " ;
return " " ;
}
2022-11-30 18:34:33 +01:00
/ * *
* Table pour la synthèse au début du FeedBack : Style de paragraphe , Style de page
* @param titre
* @param prop
* @param pointstotal
* @param pointsgagnes
* @param coef
* @param id
* @return
* /
2022-05-10 21:02:22 +02:00
public static String TablePointsSyntheseStyle ( String titre , double prop , String pointstotal , String pointsgagnes , String coef , String id ) {
2022-04-25 13:25:20 +02:00
String propRed = Integer . toHexString ( 255 - ( int ) Math . round ( Math . pow ( prop , 3 ) * 255 ) ) ;
String propGreen = Integer . toHexString ( ( int ) Math . round ( Math . pow ( prop , 3 ) * 255 ) ) ;
if ( propRed . length ( ) = = 1 ) propRed = " 0 " + propRed ;
if ( propGreen . length ( ) = = 1 ) propGreen = " 0 " + propGreen ;
String color = " # " + propRed + propGreen + " 40 " ;
2022-05-10 21:02:22 +02:00
2022-04-25 13:25:20 +02:00
DecimalFormat df = new DecimalFormat ( " ###.## " ) ;
2022-05-10 21:02:22 +02:00
if ( prop > = 0 ) return " <table width= \" 80% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
2022-04-25 13:25:20 +02:00
" <col width= \" 30% \" /><col width= \" 20% \" /><col width= \" 20% \" /><col width= \" 20% \" /><col width= \" 10% \" /> "
+ " <tr valign= \" top \" > "
+ " <td width= \" 20% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> " +
2022-05-10 21:02:22 +02:00
" <a href= \" " + id + " \" ><font size= \" 4 \" > " + titre + " </font></p></td> "
2022-04-25 13:25:20 +02:00
+ " <td width= \" 20% \" align= \" center \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> " +
2022-12-03 09:29:47 +01:00
" <b><span size \" 6 \" style= \" color: " + color + " \" >█► </span> " + df . format ( prop * 100 ) + " %</b></p></td> "
2022-04-25 13:25:20 +02:00
+ " <td width= \" 20% \" align= \" center \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> " +
pointstotal + " </p></td> "
+ " <td width= \" 20% \" align= \" center \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> " +
pointsgagnes + " </p></td> "
+ " <td width= \" 20% \" align= \" center \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> " +
coef + " </p></td> "
+ " </tr> \ r \ n " +
" </table> " ;
2022-05-10 21:02:22 +02:00
2022-12-01 13:04:20 +01:00
if ( ! commandes . noDetail ) {
return " <table width= \" 80% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
" <col width= \" 100% \" /> "
+ " <tr valign= \" top \" > "
+ " <td width= \" 15% \" style= \" border-top: 0px solid #000000; border-bottom: 0px solid #000000; border-left: 0px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 1.2cm; padding-right: 0cm \" ><p> " +
" ├ <a href= \" " + id + " \" ><font size= \" 3 \" > " + titre + " </font></p></td> "
+ " </tr> \ r \ n " +
" </table> " ;
}
return " " ;
2022-11-30 18:34:33 +01:00
// return "<table width=\"80%\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\" style=\"page-break-after: avoid\">\r\n" +
// "<col width=\"30%\"/><col width=\"20%\"/><col width=\"20%\"/><col width=\"20%\"/><col width=\"10%\"/>"
// + "<tr valign=\"top\">"
// + "<td width=\"20%\" style=\"border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm\"><p>" +
// "<a href=\"" + id + "\"><font size=\"4\">" + titre +"</font></p></td>"
// + "<td width=\"20%\" align=\"center\" style=\"border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm\"><p>" +
// "<b><span size\"6\" style=\"color:#FFFFFF\">█ </span></b></p></td>"
// + "<td width=\"20%\" align=\"center\" style=\"border: 1px solid #000000; padding: 0.1cm\"><p></p></td>"
// + "<td width=\"20%\" align=\"center\" style=\"border: 1px solid #000000; padding: 0.1cm\"><p></p></td>"
// + "<td width=\"20%\" align=\"center\" style=\"border: 1px solid #000000; padding: 0.1cm\"><p></p></td>"
// + "</tr>\r\n" +
// "</table>";
2022-04-25 13:25:20 +02:00
}
// Entête des tables pour les styles de paragraphe, styles de page, etc...
public static String TableEntete ( ) {
return " <table width= \" 92% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
" <col width= \" 64* \" /><col width= \" 64* \" /><col width= \" 64* \" /><col width= \" 64* \" /> " +
" <tr valign= \" top \" ><td width= \" 13% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font color= \" #000000 \" size= \" 5 \" style= \" font-size: 14pt \" ><b> " + " Correct/Erreur " + " </b></font></p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 14pt \" ><b> " + " Propriété " + " </b></font></p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 14pt \" ><b>Valeur fichier</p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 14pt \" ><b>Consigne " + " </p></td> \ r \ n " +
" </tr> \ r \ n " +
" </table> " ;
}
// Entête des tables pour ordre structure
public static String TableEnteteOrdreStructure ( ) {
return " <table width= \" 92% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
" <col width= \" 64* \" /><col width= \" 64* \" /><col width= \" 64* \" /><col width= \" 64* \" /> " +
" <tr valign= \" top \" ><td width= \" 13% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font color= \" #000000 \" size= \" 5 \" style= \" font-size: 14pt \" ><b> " + " Correct/Erreur " + " </b></font></p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 14pt \" ><b> " + " Propriété " + " </b></font></p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 14pt \" ><b>Ordre fichier</p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> \ r \ n " +
" <font size= \" 5 \" style= \" font-size: 14pt \" ><b>Ordre consigne " + " </p></td> \ r \ n " +
" </tr> \ r \ n " +
" </table> " ;
}
2022-11-30 18:34:33 +01:00
/ * *
* Table pour les résultats corrects et incorrects * *
* @param txt1 = résultat avec le point en positif ou négatif
* @param txt2
* @param txt3
* @param txt4
* @param niveau
* @return
* /
2022-04-25 13:25:20 +02:00
public static String Table ( String txt1 , String txt2 , String txt3 , String txt4 , int niveau ) {
String color = " #AAAAAA " ; //#
if ( niveau = = 2 ) color = " #dc143c " ;
if ( niveau = = 1 ) color = " #32cd32 " ;
return " <table width= \" 92% \" align= \" center \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > \ r \ n " +
" <col width= \" 64* \" /><col width= \" 64* \" /><col width= \" 64* \" /><col width= \" 64* \" /> " +
" <tr valign= \" top \" ><td width= \" 13% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font color= \" #ffffff \" ><b><span style= \" background: " + color + " \" > " + txt1 + " </p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p class= \" p1 \" > \ r \ n " +
txt2 + " </p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border-top: 1px solid #000000; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
txt3 + " </p></td> \ r \ n " +
" <td width= \" 29% \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p> \ r \ n " +
txt4 + " </p></td> \ r \ n " +
" </tr> \ r \ n " +
" </table> " ;
}
2022-06-27 13:12:50 +02:00
//*************************************
//***** table d'un node de l'analyse **
//*************************************
2022-04-25 13:25:20 +02:00
public static String Table ( node nod ) {
2022-06-27 13:12:50 +02:00
if ( nod . getAttributs ( ) . get ( " pointtotal " ) ! = null ) if ( ! nod . getAttributs ( ) . get ( " pointtotal " ) . equals ( " 0 " ) ) {
String code = HTML . SautLigne ( ) ;
code = addSautEtTitres ( code , nod ) ;
//ajoute le commentaire
if ( ! nod . getContenu ( ) . isEmpty ( ) ) if ( nod . getNodes ( ) . size ( ) > 0 ) code = code + HTML . Paragraph_classp6 ( nod . getContenu ( ) . get ( 0 ) ) + HTML . SautLigne ( ) ;
//ajoute l'entête
code = code + HTML . TableEntete ( ) ;
for ( int k = 0 ; k < nod . getNodes ( ) . size ( ) ; k + + ) {
if ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " niveau " ) ! = null ) {
String Tst = nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " resultat " ) ;
2022-12-10 20:23:53 +01:00
String Key = null ;
if ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " attribut " ) ! = null ) {
Key = evaluation . traduction . get ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " elt " ) + " " + evaluation . withoutCodeAndPoint ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " attribut " ) ) ) ;
if ( Key = = null ) Key = nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " elt " ) + " " + evaluation . withoutCodeAndPoint ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " attribut " ) ) ;
} else {
Key = evaluation . traduction . get ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " elt " ) ) ;
}
2022-06-27 13:12:50 +02:00
2022-12-10 20:23:53 +01:00
2022-06-27 13:12:50 +02:00
String valueStudent = nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " valueStudent " ) ;
String valueSujet = evaluation . withoutCodeAndPoint ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " valueSujet " ) ) ;
int niveau = Integer . valueOf ( nod . getNodes ( ) . get ( k ) . getAttributs ( ) . get ( " niveau " ) ) ;
code = code + HTML . Table ( Tst , Key , valueStudent , valueSujet , niveau ) ;
} else {
code = addSautEtTitres ( code , nod . getNodes ( ) . get ( k ) ) ;
2022-05-09 21:22:50 +02:00
2022-04-25 13:25:20 +02:00
2022-06-27 13:12:50 +02:00
if ( ! nod . getContenu ( ) . isEmpty ( ) ) code = code + HTML . Paragraph_classp6 ( nod . getContenu ( ) . get ( 0 ) ) + HTML . SautLigne ( ) ;
for ( int l = 0 ; l < nod . getNodes ( ) . get ( k ) . getNodes ( ) . size ( ) ; l + + ) {
if ( ! nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getNomElt ( ) . equals ( " saut " ) ) {
String Tst = nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " resultat " ) ;
2022-05-09 21:22:50 +02:00
2022-06-27 13:12:50 +02:00
String Key2 = evaluation . traduction . get ( nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " elt " ) + " " + evaluation . withoutCodeAndPoint ( nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " attribut " ) ) ) ;
if ( Key2 = = null ) Key2 = nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " elt " ) + " " + evaluation . withoutCodeAndPoint ( nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " attribut " ) ) ;
String valueStudent = nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " valueStudent " ) ;
String valueSujet = evaluation . withoutCodeAndPoint ( nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " valueSujet " ) ) ;
int niveau = Integer . valueOf ( nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) . getAttributs ( ) . get ( " niveau " ) ) ;
code = code + HTML . Table ( Tst , Key2 , valueStudent , valueSujet , niveau ) ;
} else {
code = addSautEtTitres ( code , nod . getNodes ( ) . get ( k ) . getNodes ( ) . get ( l ) ) ;
}
2022-04-25 13:25:20 +02:00
}
2022-06-27 13:12:50 +02:00
}
2022-04-25 13:25:20 +02:00
2022-06-27 13:12:50 +02:00
}
code = code . replace ( " -NewLine- " , " <br> " ) ;
return code ;
}
2022-04-25 13:25:20 +02:00
2022-06-27 13:12:50 +02:00
return " " ;
2022-04-25 13:25:20 +02:00
}
2022-05-09 21:22:50 +02:00
private static String addSautEtTitres ( String code , node nodeAna ) {
if ( nodeAna . getNomElt ( ) . equals ( " saut " ) ) {
code = code + HTML . SautLigne ( ) ;
}
2022-12-11 14:34:44 +01:00
if ( nodeAna . getAttributs ( ) . get ( " marquenode " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " marquenode " ) . isEmpty ( ) ) {
2022-12-12 11:49:47 +01:00
code = code + HTML . SautLigne ( ) + HTML . SautP11 ( nodeAna . getAttributs ( ) . get ( " marquenode " ) + HTML . SautLigne ( ) ) ;
2022-12-11 14:34:44 +01:00
}
2022-12-13 15:32:28 +01:00
if ( nodeAna . getAttributs ( ) . get ( " information " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " information " ) . isEmpty ( ) ) {
2022-12-14 10:33:48 +01:00
code = code + HTML . SautLigne ( ) + HTML . SautInformation ( nodeAna . getAttributs ( ) . get ( " information " ) + HTML . SautLigne ( ) ) ;
2022-12-13 15:32:28 +01:00
}
2022-05-09 21:22:50 +02:00
if ( nodeAna . getAttributs ( ) . get ( " titre " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " titre " ) . isEmpty ( ) ) {
2022-05-10 21:02:22 +02:00
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) . equals ( " NaN " ) ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . H1 ( nodeAna . getAttributs ( ) . get ( " titre " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) = = null ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . H1 ( nodeAna . getAttributs ( ) . get ( " titre " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
2022-05-09 21:22:50 +02:00
if ( nodeAna . getAttributs ( ) . get ( " id " ) = = null ) code = code + HTML . SautLigne ( ) + HTML . H1 ( nodeAna . getAttributs ( ) . get ( " titre " ) ) + HTML . SautLigne ( ) ; ;
}
if ( nodeAna . getAttributs ( ) . get ( " titre1 " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " titre1 " ) . isEmpty ( ) ) {
2022-05-10 21:02:22 +02:00
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) . equals ( " NaN " ) ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . H2 ( nodeAna . getAttributs ( ) . get ( " titre1 " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) = = null ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . H2 ( nodeAna . getAttributs ( ) . get ( " titre1 " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " id " ) = = null ) code = code + HTML . SautLigne ( ) + HTML . H2 ( nodeAna . getAttributs ( ) . get ( " titre1 " ) ) + HTML . SautLigne ( ) ; ;
2022-05-09 21:22:50 +02:00
}
if ( nodeAna . getAttributs ( ) . get ( " titre2 " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " titre2 " ) . isEmpty ( ) ) {
2022-05-10 21:02:22 +02:00
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) . equals ( " NaN " ) ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . SautLigneOnduleBleu ( nodeAna . getAttributs ( ) . get ( " titre2 " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) = = null ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . SautLigneOnduleBleu ( nodeAna . getAttributs ( ) . get ( " titre2 " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " id " ) = = null ) code = code + HTML . SautLigne ( ) + HTML . SautLigneOnduleBleu ( nodeAna . getAttributs ( ) . get ( " titre2 " ) ) + HTML . SautLigne ( ) ; ;
2022-05-09 21:22:50 +02:00
}
if ( nodeAna . getAttributs ( ) . get ( " titre3 " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " titre3 " ) . isEmpty ( ) ) {
2022-05-10 21:02:22 +02:00
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) ! = null ) if ( ! nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) . equals ( " NaN " ) ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . SautP8 ( nodeAna . getAttributs ( ) . get ( " titre3 " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " proportioncorrect " ) = = null ) if ( nodeAna . getAttributs ( ) . get ( " id " ) ! = null ) code = code + HTML . SautLigne ( ) + HTML . SautP8 ( nodeAna . getAttributs ( ) . get ( " titre3 " ) , nodeAna . getAttributs ( ) . get ( " id " ) ) + HTML . SautLigne ( ) ; ;
if ( nodeAna . getAttributs ( ) . get ( " id " ) = = null ) code = code + HTML . SautLigne ( ) + HTML . SautP8 ( nodeAna . getAttributs ( ) . get ( " titre3 " ) ) + HTML . SautLigne ( ) ; ;
2022-05-09 21:22:50 +02:00
}
return code ;
}
2022-04-25 13:25:20 +02:00
// Table correct pour application des styles
public static String TableApplStyle ( String NomStyle , ArrayList < String > T , ArrayList < String > S , boolean erreur ) {
String T1 = " " ;
String T2 = " " ;
for ( int i = 0 ; i < T . size ( ) ; i + + ) {
T1 = T1 + T . get ( i ) + " <br/> \ r " ;
}
for ( int i = 0 ; i < S . size ( ) ; i + + ) {
2022-06-16 16:45:48 +02:00
T2 = T2 + evaluation . withoutPoint ( S . get ( i ) ) + " <br/> \ r " ;
2022-04-25 13:25:20 +02:00
}
String color = " #32cd32 " ; //vert
if ( erreur ) color = " #dc143c " ; //rouge
// table pour l'application des styles
return " <table width= \" 95% \" cellpadding= \" 4 \" cellspacing= \" 0 \" style= \" page-break-after: avoid \" > "
+ " <col width= \" 20% \" /> "
+ " <col width= \" 40% \" /> "
+ " <col width= \" 40% \" /> "
+ " <tr> "
+ " <td colspan= \" 3 \" width= \" 100% \" valign= \" top \" style= \" border: 1px solid #000000; padding: 0.1cm \" ><p align= \" center \" ><b> "
+ " <font size= \" 5 \" >Les paragraphes qui sont dans le style \" " + NomStyle + " \" </font></b></p> "
+ " </td> "
+ " </tr> "
+ " <tr valign= \" top \" > "
+ " <td width= \" 20% \" style= \" border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font size= \" 4 \" ><b>Correct/Erreur</b></font></p> "
+ " </td> "
+ " <td width= \" 40% \" style= \" border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font size= \" 4 \" ><b>Dans fichier remis</b></font></p> "
+ " </td> "
+ " <td width= \" 40% \" style= \" border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0.1cm \" ><p> \ r \ n " +
" <font size= \" 4 \" ><b>Consigne</b></font></p> "
+ " </td> "
+ " </tr> "
+ " <tr valign= \" top \" > "
+ " <td width= \" 20% \" style= \" border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
" <font color= \" #ffffff \" ><b><span style= \" background: " + color + " \" >Correct</span></b></font><br/></p> "
+ " </td> "
+ " <td width= \" 40% \" style= \" border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: none; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0cm \" ><p> \ r \ n " +
T1 + " <br/></p> "
+ " </td> "
+ " <td width= \" 40% \" style= \" border-top: none; border-bottom: 1px solid #000000; border-left: 1px solid #000000; border-right: 1px solid #000000; padding-top: 0cm; padding-bottom: 0.1cm; padding-left: 0.1cm; padding-right: 0.1cm \" ><p> \ r \ n " +
T2 + " <br/></p> "
+ " </td> "
+ " </tr> \ r \ n " +
" </table> " ;
}
// Aller en haut
// public static String GoToTop() {
// return "<p><a href=\"#top\">" + ImgTop() +"</a></p>";
// }
// Les points obtenus sous les tables
public static String Paragraph_SousPartieNote ( int ptacquis , int ptotal , double prop ) {
return " <h4>Total des points acquis = " + ptacquis + " <br/>Total des points analysés = " + ptotal + " <br/>Proportion = " + prop + " </h4> \ r " ;
}
// image du logo de la fac
public static String imgLogos ( ) {
2024-03-21 11:56:07 +01:00
return " <?xml version= \" 1.0 \" encoding= \" UTF-8 \" standalone= \" no \" ?> \ r \ n "
+ " <svg \ r \ n "
+ " inkscape:export-ydpi= \" 128 \" \ r \ n "
+ " inkscape:export-xdpi= \" 128 \" \ r \ n "
+ " inkscape:export-filename= \" C: \\ Users \\ pabr6 \\ git \\ analyseWriter \\ MEPTL \\ icons \\ accueil.png \" \ r \ n "
+ " sodipodi:docname= \" logo analyseWriter accueill.svg \" \ r \ n "
2024-03-01 18:21:34 +01:00
+ " inkscape:version= \" 1.3 (0e150ed6c4, 2023-07-21) \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " id= \" svg8 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " viewBox= \" 0 0 14.589817 16.182283 \" \ r \ n "
+ " height= \" 61.161385 \" \ r \ n "
+ " width= \" 55.142616 \" \ r \ n "
2024-03-01 18:21:34 +01:00
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " xmlns:xlink= \" http://www.w3.org/1999/xlink \" \ r \ n "
2024-03-01 18:21:34 +01:00
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:rdf= \" http://www.w3.org/1999/02/22-rdf-syntax-ns# \" \ r \ n "
+ " xmlns:cc= \" http://creativecommons.org/ns# \" \ r \ n "
+ " xmlns:dc= \" http://purl.org/dc/elements/1.1/ \" > \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" > \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" k \" \ r \ n "
+ " gradientTransform= \" matrix(7.99974,0,0,7.9977797,-873.96742,-7808.7674) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x1= \" 122.75008 \" \ r \ n "
+ " x2= \" 111.74973 \" \ r \ n "
+ " xlink:href= \" #b \" \ r \ n "
+ " y1= \" 991.62115 \" \ r \ n "
+ " y2= \" 977.11713 \" /> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" b \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #0369a3 \" \ r \ n "
+ " id= \" stop7 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #1c99e0 \" \ r \ n "
+ " id= \" stop9 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" j \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x1= \" 108.00134 \" \ r \ n "
+ " x2= \" 20.001341 \" \ r \ n "
+ " y1= \" 122 \" \ r \ n "
+ " y2= \" 6 \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #e6e6e6 \" \ r \ n "
+ " id= \" stop35 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #fff \" \ r \ n "
+ " id= \" stop37 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" i \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x1= \" 108.00134 \" \ r \ n "
+ " x2= \" 20.001341 \" \ r \ n "
+ " xlink:href= \" #b \" \ r \ n "
+ " y1= \" 130 \" \ r \ n "
+ " y2= \" 14 \" /> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" h \" \ r \ n "
+ " gradientTransform= \" matrix(4.4999,0,0,3.66665,-942.97741,2199.6564) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x2= \" 0 \" \ r \ n "
+ " y1= \" -581.63782 \" \ r \ n "
+ " y2= \" -578.63782 \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #63bbee \" \ r \ n "
+ " id= \" stop29 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #aadcf7 \" \ r \ n "
+ " id= \" stop31 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" g \" \ r \ n "
+ " gradientTransform= \" matrix(-4.19983,0,0,3.9111,1540.9405,-4523.1636) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x2= \" 0 \" \ r \ n "
+ " xlink:href= \" #a \" \ r \ n "
+ " y1= \" 1173 \" \ r \ n "
+ " y2= \" 1178 \" /> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" a \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #666 \" \ r \ n "
+ " id= \" stop2 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #333 \" \ r \ n "
+ " id= \" stop4 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" f \" \ r \ n "
+ " gradientTransform= \" matrix(4.19983,0,0,3.9111,-1392.9394,-4521.9436) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x2= \" 0 \" \ r \ n "
+ " xlink:href= \" #a \" \ r \ n "
+ " y1= \" 1173 \" \ r \ n "
+ " y2= \" 1178 \" /> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" e \" \ r \ n "
+ " gradientTransform= \" matrix(1.19997,0,0,1.22222,-281.19161,858.5534) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x2= \" 0 \" \ r \ n "
+ " y1= \" -629.66907 \" \ r \ n "
+ " y2= \" -635.54944 \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #18a303 \" \ r \ n "
+ " id= \" stop22 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #106802 \" \ r \ n "
+ " id= \" stop24 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" d \" \ r \ n "
+ " gradientTransform= \" matrix(4.19983,0,0,3.9111,-1392.9394,-4517.0536) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x2= \" 0 \" \ r \ n "
+ " y1= \" 1173 \" \ r \ n "
+ " y2= \" 1178 \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #0369a3 \" \ r \ n "
+ " id= \" stop17 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #023f62 \" \ r \ n "
+ " id= \" stop19 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " <linearGradient \ r \ n "
+ " id= \" c \" \ r \ n "
+ " gradientTransform= \" matrix(0,0.791084,-1.28,0,1499.6005,-282.0136) \" \ r \ n "
+ " gradientUnits= \" userSpaceOnUse \" \ r \ n "
+ " x1= \" 445.69522 \" \ r \ n "
+ " x2= \" 441.38797 \" \ r \ n "
+ " y1= \" 1103.5776 \" \ r \ n "
+ " y2= \" 1099.8198 \" > \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 0 \" \ r \ n "
+ " stop-color= \" #e9b913 \" \ r \ n "
+ " id= \" stop12 \" /> \ r \ n "
+ " <stop \ r \ n "
+ " offset= \" 1 \" \ r \ n "
+ " stop-color= \" #ff0 \" \ r \ n "
+ " id= \" stop14 \" /> \ r \ n "
+ " </linearGradient> \ r \ n "
+ " </defs> \ r \ n "
2024-03-01 18:21:34 +01:00
+ " <sodipodi:namedview \ r \ n "
2024-03-21 11:56:07 +01:00
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " lock-margins= \" true \" \ r \ n "
+ " units= \" px \" \ r \ n "
+ " fit-margin-bottom= \" 2 \" \ r \ n "
+ " fit-margin-right= \" 2 \" \ r \ n "
+ " fit-margin-left= \" 2 \" \ r \ n "
+ " fit-margin-top= \" 2 \" \ r \ n "
+ " inkscape:guide-bbox= \" true \" \ r \ n "
+ " showguides= \" true \" \ r \ n "
+ " inkscape:snap-global= \" true \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " inkscape:document-rotation= \" 0 \" \ r \ n "
+ " inkscape:current-layer= \" layer1 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " inkscape:cy= \" 34.522473 \" \ r \ n "
+ " inkscape:cx= \" 107.75704 \" \ r \ n "
+ " inkscape:zoom= \" 2.9835638 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
2024-03-01 18:21:34 +01:00
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " id= \" base \" \ r \ n "
2024-03-01 18:21:34 +01:00
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " inkscape:snap-midpoints= \" true \" \ r \ n "
+ " inkscape:snap-intersection-paths= \" true \" \ r \ n "
+ " inkscape:snap-smooth-nodes= \" true \" \ r \ n "
+ " inkscape:object-paths= \" true \" \ r \ n "
+ " inkscape:snap-page= \" true \" \ r \ n "
+ " inkscape:showpageshadow= \" 2 \" \ r \ n "
+ " inkscape:deskcolor= \" #d1d1d1 \" > \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " id= \" guide1680 \" \ r \ n "
+ " orientation= \" 0,-1 \" \ r \ n "
+ " position= \" 36.341869,2.3605486 \" \ r \ n "
+ " inkscape:locked= \" false \" /> \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 2.0396469,21.857822 \" \ r \ n "
+ " orientation= \" -0.71102562,0.7031661 \" \ r \ n "
+ " id= \" guide2372 \" \ r \ n "
+ " inkscape:locked= \" false \" /> \ r \ n "
+ " </sodipodi:namedview> \ r \ n "
+ " <metadata \ r \ n "
+ " id= \" metadata5 \" > \ r \ n "
+ " <rdf:RDF> \ r \ n "
+ " <cc:Work \ r \ n "
+ " rdf:about= \" \" > \ r \ n "
+ " <dc:format>image/svg+xml</dc:format> \ r \ n "
+ " <dc:type \ r \ n "
+ " rdf:resource= \" http://purl.org/dc/dcmitype/StillImage \" /> \ r \ n "
+ " </cc:Work> \ r \ n "
+ " </rdf:RDF> \ r \ n "
+ " </metadata> \ r \ n "
2024-03-01 18:21:34 +01:00
+ " <g \ r \ n "
2024-03-21 11:56:07 +01:00
+ " transform= \" translate(-31.987135,-46.825306) \" \ r \ n "
2024-03-01 18:21:34 +01:00
+ " id= \" layer1 \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " inkscape:label= \" Calque 1 \" > \ r \ n "
+ " <rect \ r \ n "
+ " style= \" fill:none;stroke:none;stroke-width:0.069572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000 \" \ r \ n "
+ " id= \" rect4845 \" \ r \ n "
+ " width= \" 14.589817 \" \ r \ n "
+ " height= \" 16.182283 \" \ r \ n "
+ " x= \" 31.987135 \" \ r \ n "
+ " y= \" 46.825306 \" /> \ r \ n "
+ " <text \ r \ n "
+ " xml:space= \" preserve \" \ r \ n "
+ " style= \" font-size:2.15054px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.0504031 \" \ r \ n "
+ " x= \" 32.5401 \" \ r \ n "
+ " y= \" 61.642662 \" \ r \ n "
+ " id= \" text835 \" ><tspan \ r \ n "
+ " sodipodi:role= \" line \" \ r \ n "
+ " id= \" tspan833 \" \ r \ n "
+ " x= \" 32.5401 \" \ r \ n "
+ " y= \" 61.642662 \" \ r \ n "
+ " style= \" font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.15054px;font-family:Pacifico;-inkscape-font-specification:Pacifico;stroke-width:0.0504031 \" >analyseWriter</tspan></text> \ r \ n "
2024-03-01 18:21:34 +01:00
+ " <g \ r \ n "
+ " id= \" g1624 \" \ r \ n "
2024-03-21 11:56:07 +01:00
+ " transform= \" matrix(0.08001717,0,0,0.08001717,31.183126,41.638543) \" > \ r \ n "
2024-03-01 18:21:34 +01:00
+ " <g \ r \ n "
+ " transform= \" matrix(3.4017825,0,0,3.4017825,-95.08183,-189.09441) \" \ r \ n "
+ " id= \" g884 \" \ r \ n "
+ " style= \" stroke-width:1.4046;stroke-miterlimit:4;stroke-dasharray:none \" > \ r \ n "
+ " <rect \ r \ n "
+ " style= \" fill:#00ff00;fill-rule:evenodd;stroke:#000000;stroke-width:1.4046;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none \" \ r \ n "
+ " id= \" rect880 \" \ r \ n "
+ " width= \" 38.433739 \" \ r \ n "
+ " height= \" 35.890331 \" \ r \ n "
+ " x= \" 37.868542 \" \ r \ n "
+ " y= \" 83.64991 \" \ r \ n "
+ " ry= \" 2.5985754 \" \ r \ n "
+ " rx= \" 2.5985754 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:5.61829;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers fill stroke \" \ r \ n "
+ " d= \" M 71.512572,88.41099 60.11298,113.78783 43.185151,105.76978 55.59032,107.11953 Z \" \ r \ n "
+ " id= \" path882 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccccc \" /> \ r \ n "
+ " </g> \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#ffaaaa;stroke:#ffaaaa;stroke-width:3.21677px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1 \" \ r \ n "
+ " d= \" M 62.421182,83.450948 53.247834,73.396095 c -3.269201,-0.03495 -6.108773,-0.739553 -11.152516,1.99147 -5.59384,4.292817 -8.281453,7.910846 -10.664708,11.458206 -2.148177,4.173122 -1.698608,7.124368 -1.216677,10.060391 l 9.74404,9.259068 z \" \ r \ n "
+ " id= \" path1605 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccccccc \" /> \ r \ n "
+ " <path \ r \ n "
+ " transform= \" matrix(1.315503,-0.76811157,0.73918702,1.366979,-196.76404,56.095615) \" \ r \ n "
+ " id= \" path903 \" \ r \ n "
+ " d= \" m 142.61305,103.6418 9.43978,-0.5287 c 1.19321,12.05269 -3.29434,12.95393 3.79047,36.57198 \" \ r \ n "
+ " style= \" fill:none;stroke:#686868;stroke-width:3.90457;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccc \" /> \ r \ n "
+ " <g \ r \ n "
+ " id= \" g901 \" \ r \ n "
+ " style= \" stroke-width:1.20245;stroke-miterlimit:4;stroke-dasharray:none \" \ r \ n "
+ " transform= \" matrix(1.3484552,-0.70866904,0.67747724,1.3985899,-192.46008,42.858566) \" > \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 165.60421,210.25518 -16.67346,-14.97786 19.49947,-6.49982 z \" \ r \ n "
+ " id= \" path886 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#ffcc00;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 148.93075,195.27732 -29.6731,-89.58453 19.78207,-6.217222 29.3905,89.301932 z \" \ r \ n "
+ " id= \" path888 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccccc \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#cccccc;stroke:#000000;stroke-width:1.20245;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 119.25765,105.69279 19.78206,-6.217223 5.18467,15.184943 -20.19347,6.3466 z \" \ r \ n "
+ " id= \" path896 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccccc \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#000000;stroke:none;stroke-width:1.20245;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 165.60421,210.25518 1.82913,-13.90142 c -1.86721,0.41019 -1.24071,5.14178 -2.26609,5.73964 -0.90416,0.52717 -2.9307,-2.35026 -4.06786,-2.12548 -1.70014,0.33605 2.39156,6.64425 -1.96215,4.47795 z \" \ r \ n "
+ " id= \" path1247 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccsscc \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
2024-03-21 11:56:07 +01:00
+ " </svg> \ r \ n "
+ " " ;
2024-03-01 18:21:34 +01:00
// return "<svg\r\n" +
// " xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\r\n" +
// " xmlns:cc=\"http://creativecommons.org/ns#\"\r\n" +
// " xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\r\n" +
// " xmlns:svg=\"http://www.w3.org/2000/svg\"\r\n" +
// " xmlns=\"http://www.w3.org/2000/svg\"\r\n" +
// " id=\"svg4491\"\r\n" +
// " version=\"1.1\"\r\n" +
// " viewBox=\"0 0 37.144689 19.770884\"\r\n" +
// " height=\"74.724602\"\r\n" +
// " width=\"140.38937\">\r\n" +
// " <defs\r\n" +
// " id=\"defs4485\" />\r\n" +
// " <metadata\r\n" +
// " id=\"metadata4488\">\r\n" +
// " <rdf:RDF>\r\n" +
// " <cc:Work\r\n" +
// " rdf:about=\"\">\r\n" +
// " <dc:format>image/svg+xml</dc:format>\r\n" +
// " <dc:type\r\n" +
// " rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />\r\n" +
// " <dc:title></dc:title>\r\n" +
// " </cc:Work>\r\n" +
// " </rdf:RDF>\r\n" +
// " </metadata>\r\n" +
// " <g\r\n" +
// " transform=\"translate(-62.264812,-135.92528)\"\r\n" +
// " id=\"layer1\">\r\n" +
// " <path\r\n" +
// " id=\"path2574\"\r\n" +
// " style=\"fill:#193476;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"\r\n" +
// " d=\"m 76.827536,137.94138 c 0.93856,0.1193 -2.989764,-0.78943 -4.712891,3.87747 -1.186656,2.67692 -0.984581,2.4755 -1.67349,3.91517 -0.73951,1.5455 -1.937082,2.84493 -1.725085,2.73678 0,0 3.079752,-0.29865 5.227177,-4.64906 1.184671,-2.40043 1.553434,-5.35053 2.979539,-5.88367\" />\r\n" +
// " <path\r\n" +
// " id=\"path2576\"\r\n" +
// " style=\"fill:#f46717;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"\r\n" +
// " d=\"m 68.716072,148.4708 c 0.153128,-0.16437 0.237794,-0.2745 0.237794,-0.2745 -1.940718,1.03253 -2.275747,0.44053 -2.432843,-0.28178 -0.155774,-0.72232 0.874117,-3.40685 1.650007,-5.93527 0.775891,-2.53008 -0.238786,-3.40684 -0.920088,-3.30465 -0.682294,0.10385 -1.931458,0.41342 -1.931458,0.41342 0,0 0.420356,-0.0516 0.746455,0.82616 0.256646,0.68957 -1.417505,5.47092 -1.417505,5.47092 0,0 -0.84435,2.82344 0.284096,3.81166 1.545828,1.05039 3.30663,-0.36546 4.021336,-1.00046\" />\r\n" +
// " <path\r\n" +
// " id=\"path2578\"\r\n" +
// " style=\"fill:#b3bbe5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"\r\n" +
// " d=\"m 98.835246,144.58771 c -6.780278,-1.24321 -13.444471,-0.3304 -19.156164,1.313 -0.112117,0.33569 -0.214312,0.64293 -0.306916,0.91678 11.627776,-3.27091 19.46308,-2.22978 19.46308,-2.22978\" />\r\n" +
// " <path\r\n" +
// " id=\"path2580\"\r\n" +
// " style=\"fill:#b3bbe5;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"\r\n" +
// " d=\"m 76.287124,146.99343 c -7.94676,2.83535 -13.34856,6.66486 -13.34856,6.66486 4.617641,-2.57208 9.009724,-4.43971 13.037344,-5.7914 0.02479,-0.0704 0.04961,-0.13891 0.07375,-0.20737 0.08037,-0.22555 0.160073,-0.44714 0.237463,-0.66609\" />\r\n" +
// " <path\r\n" +
// " id=\"path2582\"\r\n" +
// " style=\"fill:#35af3f;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1\"\r\n" +
// " d=\"m 78.264554,153.17642 c -0.932987,-0.93299 0.304271,-4.0812 0.698831,-5.16732 0.0764,-0.20935 0.220265,-0.62772 0.408781,-1.19161 0.0926,-0.27385 0.194799,-0.58109 0.306916,-0.91678 0.536112,-1.61165 1.271323,-3.85366 1.957256,-5.95809 0.69883,-2.31246 0.03638,-3.23817 -1.390717,-3.23817 -1.010377,0.31122 -3.418085,1.23693 -3.418085,1.23693 0,0 2.640541,-0.57649 1.902354,1.75419 -0.451115,1.42709 -1.253464,3.94229 -2.442766,7.29786 -0.07739,0.21895 -0.157096,0.44054 -0.237463,0.66609 -0.02413,0.0685 -0.04895,0.13693 -0.07375,0.20737 -0.885362,2.51652 -1.79156,5.92766 0.660797,6.8871 1.78693,0.6995 4.619625,-0.99483 6.172398,-2.97523 -2.329987,1.59179 -3.612224,2.33064 -4.544549,1.39766\" />\r\n" +
// " </g>\r\n" +
// "</svg>\r\n" +
// "";
2022-04-25 13:25:20 +02:00
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG de la progression
* @return
* /
2022-04-25 13:25:20 +02:00
public static String imgProgression ( ) {
return " <svg \ r \ n " +
" xmlns:dc= \" http://purl.org/dc/elements/1.1/ \" \ r \ n " +
" xmlns:cc= \" http://creativecommons.org/ns# \" \ r \ n " +
" xmlns:rdf= \" http://www.w3.org/1999/02/22-rdf-syntax-ns# \" \ r \ n " +
" xmlns:svg= \" http://www.w3.org/2000/svg \" \ r \ n " +
" xmlns= \" http://www.w3.org/2000/svg \" \ r \ n " +
" xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n " +
" xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n " +
" width= \" 205.73206mm \" \ r \ n " +
" height= \" 66.057816mm \" \ r \ n " +
" viewBox= \" 0 0 205.73204 66.05781 \" \ r \ n " +
" version= \" 1.1 \" \ r \ n " +
" id= \" svg8 \" \ r \ n " +
" inkscape:version= \" 1.0 (4035a4fb49, 2020-05-01) \" \ r \ n " +
" sodipodi:docname= \" graphique_progression.svg \" > \ r \ n " +
" <defs \ r \ n " +
" id= \" defs2 \" > \ r \ n " +
" <pattern \ r \ n " +
" y= \" 0 \" \ r \ n " +
" x= \" 0 \" \ r \ n " +
" height= \" 6 \" \ r \ n " +
" width= \" 6 \" \ r \ n " +
" patternUnits= \" userSpaceOnUse \" \ r \ n " +
" id= \" EMFhbasepattern \" /> \ r \ n " +
" <pattern \ r \ n " +
" y= \" 0 \" \ r \ n " +
" x= \" 0 \" \ r \ n " +
" height= \" 6 \" \ r \ n " +
" width= \" 6 \" \ r \ n " +
" patternUnits= \" userSpaceOnUse \" \ r \ n " +
" id= \" EMFhbasepattern-7 \" /> \ r \ n " +
" <pattern \ r \ n " +
" y= \" 0 \" \ r \ n " +
" x= \" 0 \" \ r \ n " +
" height= \" 6 \" \ r \ n " +
" width= \" 6 \" \ r \ n " +
" patternUnits= \" userSpaceOnUse \" \ r \ n " +
" id= \" EMFhbasepattern-6 \" /> \ r \ n " +
" <pattern \ r \ n " +
" y= \" 0 \" \ r \ n " +
" x= \" 0 \" \ r \ n " +
" height= \" 6 \" \ r \ n " +
" width= \" 6 \" \ r \ n " +
" patternUnits= \" userSpaceOnUse \" \ r \ n " +
" id= \" EMFhbasepattern-0 \" /> \ r \ n " +
" <pattern \ r \ n " +
" y= \" 0 \" \ r \ n " +
" x= \" 0 \" \ r \ n " +
" height= \" 6 \" \ r \ n " +
" width= \" 6 \" \ r \ n " +
" patternUnits= \" userSpaceOnUse \" \ r \ n " +
" id= \" EMFhbasepattern-64 \" /> \ r \ n " +
" </defs> \ r \ n " +
" <sodipodi:namedview \ r \ n " +
" id= \" base \" \ r \ n " +
" pagecolor= \" #ffffff \" \ r \ n " +
" bordercolor= \" #666666 \" \ r \ n " +
" borderopacity= \" 1.0 \" \ r \ n " +
" inkscape:pageopacity= \" 0.0 \" \ r \ n " +
" inkscape:pageshadow= \" 2 \" \ r \ n " +
" inkscape:zoom= \" 1.605 \" \ r \ n " +
" inkscape:cx= \" 380.02947 \" \ r \ n " +
" inkscape:cy= \" 125.14521 \" \ r \ n " +
" inkscape:document-units= \" mm \" \ r \ n " +
" inkscape:current-layer= \" g3882 \" \ r \ n " +
" showgrid= \" false \" \ r \ n " +
" fit-margin-top= \" 0 \" \ r \ n " +
" fit-margin-left= \" 0 \" \ r \ n " +
" fit-margin-right= \" 0 \" \ r \ n " +
" fit-margin-bottom= \" 0 \" \ r \ n " +
" inkscape:window-width= \" 1920 \" \ r \ n " +
" inkscape:window-height= \" 1017 \" \ r \ n " +
" inkscape:window-x= \" -8 \" \ r \ n " +
" inkscape:window-y= \" -8 \" \ r \ n " +
" inkscape:window-maximized= \" 1 \" \ r \ n " +
" inkscape:snap-global= \" false \" \ r \ n " +
" inkscape:document-rotation= \" 0 \" /> \ r \ n " +
" <metadata \ r \ n " +
" id= \" metadata5 \" > \ r \ n " +
" <rdf:RDF> \ r \ n " +
" <cc:Work \ r \ n " +
" rdf:about= \" \" > \ r \ n " +
" <dc:format>image/svg+xml</dc:format> \ r \ n " +
" <dc:type \ r \ n " +
" rdf:resource= \" http://purl.org/dc/dcmitype/StillImage \" /> \ r \ n " +
" <dc:title></dc:title> \ r \ n " +
" </cc:Work> \ r \ n " +
" </rdf:RDF> \ r \ n " +
" </metadata> \ r \ n " +
" <g \ r \ n " +
" inkscape:label= \" Calque 1 \" \ r \ n " +
" inkscape:groupmode= \" layer \" \ r \ n " +
" id= \" layer1 \" \ r \ n " +
" transform= \" translate(-7.7422525,-73.304108) \" > \ r \ n " +
" <g \ r \ n " +
" id= \" g3882 \" \ r \ n " +
" transform= \" matrix(0.74357194,0,0,0.74357194,2.0228312,35.12985) \" > \ r \ n " +
" <rect \ r \ n " +
" style= \" fill:#ffffff;fill-opacity:1;stroke:#766e19;stroke-width:1.18859;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal \" \ r \ n " +
" id= \" rect4295 \" \ r \ n " +
" width= \" 275.49219 \" \ r \ n " +
" height= \" 87.64991 \" \ r \ n " +
" x= \" 8.2861147 \" \ r \ n " +
" y= \" 51.933319 \" \ r \ n " +
" rx= \" 6.3410912 \" \ r \ n " +
" ry= \" 6.8764377 \" /> \ r \ n " +
" <path \ r \ n " +
" inkscape:connector-curvature= \" 0 \" \ r \ n " +
" style= \" fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.21258 \" \ r \ n " +
" d= \" M 73.774134,136.39998 H 9.944808 V 54.697807 H 137.60346 v 81.702173 z \" \ r \ n " +
" id= \" path2359 \" /> \ r \ n " +
" <g \ r \ n " +
" id= \" g3052 \" \ r \ n " +
" transform= \" matrix(0.55341809,0,0,0.54332781,16.892618,3.0717534) \" > \ r \ n " +
" <g \ r \ n " +
" id= \" g3920 \" \ r \ n " +
" transform= \" matrix(1.0277361,0,0,1.0277361,-4.6787217,-16.789525) \" > \ r \ n " +
" <path \ r \ n " +
" id= \" path1249 \" \ r \ n " +
" d= \" M 110.91385,252.25471 H -4.6322315 V 108.15784 H 226.45993 v 144.09687 z \" \ r \ n " +
" style= \" fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1251 \" \ r \ n " +
" d= \" M 118.29999,225.63775 H 21.608708 V 129.98053 H 214.99127 v 95.65722 h -96.69128 \" \ r \ n " +
" style= \" fill:none;stroke:#b3b3b3;stroke-width:0.0134293px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1253 \" \ r \ n " +
" d= \" m 21.272974,129.9671 h 0.335734 0.349163 v 95.65722 h -0.349163 -0.335734 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1255 \" \ r \ n " +
" d= \" m 40.61123,129.9671 h 0.335734 0.349163 v 95.65722 H 40.946964 40.61123 Z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1257 \" \ r \ n " +
" d= \" m 59.949486,129.9671 h 0.335734 0.349163 v 95.65722 H 60.28522 59.949486 Z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1259 \" \ r \ n " +
" d= \" m 79.287742,129.9671 h 0.335734 0.349163 v 95.65722 h -0.349163 -0.335734 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1261 \" \ r \ n " +
" d= \" m 98.625998,129.9671 h 0.33573 0.34917 v 95.65722 h -0.34917 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1263 \" \ r \ n " +
" d= \" m 117.95083,129.9671 h 0.33573 0.34916 v 95.65722 h -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1265 \" \ r \ n " +
" d= \" m 137.28908,129.9671 h 0.33574 0.34916 v 95.65722 h -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1267 \" \ r \ n " +
" d= \" m 156.62734,129.9671 h 0.33573 0.34917 v 95.65722 h -0.34917 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1269 \" \ r \ n " +
" d= \" m 175.96559,129.9671 h 0.33574 0.34916 v 95.65722 h -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1271 \" \ r \ n " +
" d= \" m 195.30385,129.9671 h 0.33573 0.34916 v 95.65722 h -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1273 \" \ r \ n " +
" d= \" m 214.65554,129.9671 h 0.33573 0.34916 v 95.65722 h -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1275 \" \ r \ n " +
" d= \" m 214.99127,225.28858 v 0.33574 0.34916 H 21.608708 v -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1277 \" \ r \ n " +
" d= \" m 214.99127,215.71346 v 0.33574 0.34916 H 21.608708 v -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1279 \" \ r \ n " +
" d= \" m 214.99127,206.15177 v 0.33573 0.34917 H 21.608708 v -0.34917 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1281 \" \ r \ n " +
" d= \" m 214.99127,196.57665 v 0.33573 0.34916 H 21.608708 v -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1283 \" \ r \ n " +
" d= \" m 214.99127,187.01495 v 0.33574 0.34916 H 21.608708 v -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1285 \" \ r \ n " +
" d= \" m 214.99127,177.46669 v 0.33573 0.34917 H 21.608708 v -0.34917 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1287 \" \ r \ n " +
" d= \" m 214.99127,167.89157 v 0.33573 0.34917 H 21.608708 v -0.34917 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1289 \" \ r \ n " +
" d= \" m 214.99127,158.32988 v 0.33573 0.34916 H 21.608708 v -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1291 \" \ r \ n " +
" d= \" m 214.99127,148.75475 v 0.33574 0.34916 H 21.608708 v -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1293 \" \ r \ n " +
" d= \" m 214.99127,139.19306 v 0.33573 0.34916 H 21.608708 v -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1295 \" \ r \ n " +
" d= \" m 214.99127,129.63136 v 0.33574 0.34916 H 21.608708 v -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#696969;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1297 \" \ r \ n " +
" d= \" m 22.159311,227.63872 h -0.550603 -0.537174 v -2.0144 h 0.537174 0.550603 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1299 \" \ r \ n " +
" d= \" m 22.159311,227.63872 h -0.550603 -0.537174 v -2.0144 h 0.537174 0.550603 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1301 \" \ r \ n " +
" d= \" m 41.497568,227.63872 h -0.550604 -0.537175 v -2.0144 h 0.537175 0.550604 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1303 \" \ r \ n " +
" d= \" m 41.497568,227.63872 h -0.550604 -0.537175 v -2.0144 h 0.537175 0.550604 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1305 \" \ r \ n " +
" d= \" M 60.835824,227.63872 H 60.28522 59.748045 v -2.0144 h 0.537175 0.550604 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1307 \" \ r \ n " +
" d= \" M 60.835824,227.63872 H 60.28522 59.748045 v -2.0144 h 0.537175 0.550604 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1309 \" \ r \ n " +
" d= \" m 80.17408,227.63872 h -0.550604 -0.537175 v -2.0144 h 0.537175 0.550604 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1311 \" \ r \ n " +
" d= \" m 80.17408,227.63872 h -0.550604 -0.537175 v -2.0144 h 0.537175 0.550604 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1313 \" \ r \ n " +
" d= \" m 99.512338,227.63872 h -0.55061 -0.53717 v -2.0144 h 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1315 \" \ r \ n " +
" d= \" m 99.512338,227.63872 h -0.55061 -0.53717 v -2.0144 h 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1317 \" \ r \ n " +
" d= \" m 118.83716,227.63872 h -0.5506 -0.53717 v -2.0144 h 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1319 \" \ r \ n " +
" d= \" m 118.83716,227.63872 h -0.5506 -0.53717 v -2.0144 h 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1321 \" \ r \ n " +
" d= \" m 138.17542,227.63872 h -0.5506 -0.53718 v -2.0144 h 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1323 \" \ r \ n " +
" d= \" m 138.17542,227.63872 h -0.5506 -0.53718 v -2.0144 h 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1325 \" \ r \ n " +
" d= \" m 157.51367,227.63872 h -0.5506 -0.53717 v -2.0144 h 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1327 \" \ r \ n " +
" d= \" m 157.51367,227.63872 h -0.5506 -0.53717 v -2.0144 h 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1329 \" \ r \ n " +
" d= \" m 176.85193,227.63872 h -0.5506 -0.53718 v -2.0144 h 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1331 \" \ r \ n " +
" d= \" m 176.85193,227.63872 h -0.5506 -0.53718 v -2.0144 h 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1333 \" \ r \ n " +
" d= \" m 196.19019,227.63872 h -0.55061 -0.53717 v -2.0144 h 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1335 \" \ r \ n " +
" d= \" m 196.19019,227.63872 h -0.55061 -0.53717 v -2.0144 h 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1337 \" \ r \ n " +
" d= \" m 215.54187,227.63872 h -0.5506 -0.53718 v -2.0144 h 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1339 \" \ r \ n " +
" d= \" m 215.54187,227.63872 h -0.5506 -0.53718 v -2.0144 h 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1341 \" \ r \ n " +
" d= \" m 21.608708,226.17492 v -0.5506 -0.53717 H 214.99127 v 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1343 \" \ r \ n " +
" d= \" m 19.594306,226.17492 v -0.5506 -0.53717 h 2.014402 v 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1345 \" \ r \ n " +
" d= \" m 19.594306,226.17492 v -0.5506 -0.53717 h 2.014402 v 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1347 \" \ r \ n " +
" d= \" m 19.594306,216.5998 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1349 \" \ r \ n " +
" d= \" m 19.594306,216.5998 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1351 \" \ r \ n " +
" d= \" m 19.594306,207.03811 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1353 \" \ r \ n " +
" d= \" m 19.594306,207.03811 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1355 \" \ r \ n " +
" d= \" m 19.594306,197.46299 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1357 \" \ r \ n " +
" d= \" m 19.594306,197.46299 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1359 \" \ r \ n " +
" d= \" m 19.594306,187.90129 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1361 \" \ r \ n " +
" d= \" m 19.594306,187.90129 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1363 \" \ r \ n " +
" d= \" m 19.594306,178.35303 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1365 \" \ r \ n " +
" d= \" m 19.594306,178.35303 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1367 \" \ r \ n " +
" d= \" m 19.594306,168.77791 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1369 \" \ r \ n " +
" d= \" m 19.594306,168.77791 v -0.55061 -0.53717 h 2.014402 v 0.53717 0.55061 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1371 \" \ r \ n " +
" d= \" m 19.594306,159.21621 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1373 \" \ r \ n " +
" d= \" m 19.594306,159.21621 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1375 \" \ r \ n " +
" d= \" m 19.594306,149.64109 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1377 \" \ r \ n " +
" d= \" m 19.594306,149.64109 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1379 \" \ r \ n " +
" d= \" m 19.594306,140.07939 v -0.5506 -0.53717 h 2.014402 v 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1381 \" \ r \ n " +
" d= \" m 19.594306,140.07939 v -0.5506 -0.53717 h 2.014402 v 0.53717 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1383 \" \ r \ n " +
" d= \" m 19.594306,130.5177 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1385 \" \ r \ n " +
" d= \" m 19.594306,130.5177 v -0.5506 -0.53718 h 2.014402 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1387 \" \ r \ n " +
" d= \" M 22.159311,225.62432 H 21.608708 21.071534 V 129.9671 h 0.537174 0.550603 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1389 \" \ r \ n " +
" d= \" m 21.608708,226.29579 v -0.67147 -0.67147 l 4.834564,-0.0134 v 0.67147 0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1391 \" \ r \ n " +
" d= \" m 26.443272,224.93942 c 0,0 0,0 0,0 v 0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1393 \" \ r \ n " +
" d= \" m 26.443272,226.29579 v -0.6849 -0.67147 h 4.834564 v 0.67147 0.6849 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1395 \" \ r \ n " +
" d= \" m 31.277836,226.28236 c 0,0 0,0.0134 0,0.0134 v -0.6849 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1397 \" \ r \ n " +
" d= \" m 31.277836,226.28236 v -0.67147 -0.67147 l 9.669128,-0.094 v 0.67146 0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1399 \" \ r \ n " +
" d= \" m 40.960393,226.18835 c 0,0 0,0 -0.01343,0 v -0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1401 \" \ r \ n " +
" d= \" m 40.960393,226.18835 -0.01343,-0.67147 -0.01343,-0.67146 4.834564,-0.0806 0.01343,0.67147 0.01343,0.67146 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1403 \" \ r \ n " +
" d= \" m 45.808386,226.10777 c -0.01343,0 -0.01343,0 -0.01343,0 l -0.01343,-0.67146 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1405 \" \ r \ n " +
" d= \" m 45.808386,226.10777 -0.02686,-0.67146 -0.02686,-0.67147 4.834564,-0.14772 0.02686,0.67146 0.02686,0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1407 \" \ r \ n " +
" d= \" m 50.64295,225.96005 c 0,0 0,0 0,0 l -0.02686,-0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1409 \" \ r \ n " +
" d= \" m 50.64295,225.96005 -0.02686,-0.67147 -0.02686,-0.67146 9.669128,-0.42974 0.02686,0.67147 0.02686,0.67146 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1411 \" \ r \ n " +
" d= \" m 60.338936,225.53031 c -0.01343,0 -0.01343,0 -0.02686,0 l -0.02686,-0.67146 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1413 \" \ r \ n " +
" d= \" m 60.338936,225.53031 -0.05372,-0.67146 -0.05372,-0.67147 9.669128,-0.73862 0.05372,0.67147 0.05372,0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1415 \" \ r \ n " +
" d= \" m 70.034925,224.7917 c -0.01343,0 -0.02686,0 -0.02686,0 l -0.05372,-0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1417 \" \ r \ n " +
" d= \" m 70.034925,224.7917 -0.08058,-0.67147 -0.08058,-0.67147 9.669128,-1.08777 0.08058,0.67147 0.08057,0.67146 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1419 \" \ r \ n " +
" d= \" m 79.730911,223.70392 c -0.01343,0 -0.02686,0 -0.02686,0 l -0.08057,-0.67146 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1421 \" \ r \ n " +
" d= \" m 79.730911,223.70392 -0.107435,-0.67146 -0.107435,-0.67147 9.669127,-1.51752 0.10744,0.67147 0.10743,0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1423 \" \ r \ n " +
" d= \" m 89.426898,222.17298 c -0.0134,0.0134 -0.0134,0.0134 -0.0269,0.0134 l -0.10743,-0.67147 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1425 \" \ r \ n " +
" d= \" m 89.426898,222.17298 -0.13429,-0.65804 -0.1343,-0.65804 9.66913,-2.0144 0.13429,0.65804 0.1343,0.65804 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1427 \" \ r \ n " +
" d= \" m 99.136308,220.15858 c -0.0134,0 -0.0268,0 -0.0403,0 l -0.1343,-0.65804 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1429 \" \ r \ n " +
" d= \" m 99.136308,220.15858 -0.17458,-0.65804 -0.17458,-0.65804 9.669132,-2.60529 0.17458,0.65803 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1431 \" \ r \ n " +
" d= \" m 108.84573,217.53985 c -0.0134,0 -0.0269,0 -0.0403,0.0134 l -0.17458,-0.65804 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1433 \" \ r \ n " +
" d= \" m 108.84573,217.53985 -0.21487,-0.64461 -0.21487,-0.6446 9.6557,-3.23647 0.21487,0.6446 0.21487,0.64461 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1435 \" \ r \ n " +
" d= \" m 118.54172,214.28995 c -0.0134,0 -0.0269,0.0134 -0.0403,0.0134 l -0.21487,-0.64461 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1437 \" \ r \ n " +
" d= \" m 118.54172,214.28995 -0.25516,-0.63118 -0.25516,-0.63118 9.66913,-3.96165 0.25516,0.63118 0.25516,0.63117 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1439 \" \ r \ n " +
" d= \" m 128.25113,210.30144 c -0.0134,0.0134 -0.0269,0.0134 -0.0403,0.0268 l -0.25516,-0.63117 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1441 \" \ r \ n " +
" d= \" m 128.25113,210.30144 -0.29544,-0.60432 -0.29545,-0.60432 9.66913,-4.74056 0.29545,0.60432 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1443 \" \ r \ n " +
" d= \" m 137.96055,205.54745 c 0,0 0,0 0,0 -0.0134,0 -0.0269,0.0134 -0.0403,0.0134 l -0.29544,-0.60432 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1445 \" \ r \ n " +
" d= \" m 137.96055,205.54745 -0.33573,-0.59089 -0.33574,-0.59089 9.66913,-5.61347 0.33573,0.59089 0.33574,0.59089 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1447 \" \ r \ n " +
" d= \" m 147.66997,199.90713 c -0.0134,0 -0.0269,0.0134 -0.0403,0.0268 l -0.33574,-0.59089 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1449 \" \ r \ n " +
" d= \" m 147.66997,199.90713 -0.37603,-0.56404 -0.37602,-0.56403 9.66913,-6.54009 0.37602,0.56403 0.37602,0.56403 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1451 \" \ r \ n " +
" d= \" m 157.36595,193.3536 c -0.0134,0 -0.0134,0 -0.0269,0.0134 l -0.37602,-0.56403 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1453 \" \ r \ n " +
" d= \" m 157.36595,193.3536 -0.40288,-0.5506 -0.40288,-0.5506 1.35637,-0.99377 0.40287,0.5506 0.40289,0.5506 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1455 \" \ r \ n " +
" d= \" m 158.73574,192.3464 c 0,0 -0.0134,0 -0.0134,0.0134 l -0.40289,-0.5506 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1457 \" \ r \ n " +
" d= \" m 158.73574,192.3464 -0.41631,-0.53717 -0.4163,-0.53717 8.31276,-6.55352 0.41631,0.53717 0.41631,0.53717 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1459 \" \ r \ n " +
" d= \" m 167.07537,185.76603 c 0,0 -0.0134,0.0134 -0.0269,0.0268 l -0.41631,-0.53717 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1461 \" \ r \ n " +
" d= \" m 167.07537,185.76603 -0.44317,-0.51032 -0.44317,-0.51032 8.43363,-7.43985 0.44317,0.51031 0.44317,0.51032 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1463 \" \ r \ n " +
" d= \" m 175.53585,178.31274 c -0.0134,0 -0.0134,0 -0.0269,0.0134 l -0.44317,-0.51032 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1465 \" \ r \ n " +
" d= \" m 175.53585,178.31274 -0.47002,-0.49689 -0.47003,-0.49688 1.2355,-1.16835 0.47003,0.49688 0.47003,0.49689 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1467 \" \ r \ n " +
" d= \" m 176.78478,177.13096 c 0,0 -0.0134,0 -0.0134,0.0134 l -0.47003,-0.49689 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1469 \" \ r \ n " +
" d= \" m 176.78478,177.13096 -0.48345,-0.48346 -0.48346,-0.48345 9.66913,-9.77657 0.48345,0.48346 0.48346,0.48345 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1471 \" \ r \ n " +
" d= \" m 186.48077,167.31411 c -0.0134,0.0134 -0.0134,0.0268 -0.0269,0.0403 l -0.48346,-0.48345 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1473 \" \ r \ n " +
" d= \" m 186.48077,167.31411 -0.51032,-0.44317 -0.51031,-0.44317 9.66913,-10.9852 0.51031,0.44316 0.51032,0.44317 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1475 \" \ r \ n " +
" d= \" m 196.17676,156.30204 c -0.0134,0.0134 -0.0134,0.0269 -0.0269,0.0269 l -0.51032,-0.44316 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1477 \" \ r \ n " +
" d= \" m 196.17676,156.30204 -0.53718,-0.41631 -0.53717,-0.41631 9.66913,-12.27442 0.53717,0.41631 0.53717,0.41631 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1479 \" \ r \ n " +
" d= \" m 205.85931,144.00076 c 0,0.0134 -0.0134,0.0269 -0.0134,0.0269 l -0.53717,-0.41631 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1481 \" \ r \ n " +
" d= \" m 205.85931,144.00076 -0.5506,-0.38945 -0.5506,-0.38945 9.68256,-13.64421 0.5506,0.38945 0.5506,0.38945 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1483 \" \ r \ n " +
" d= \" m 21.622137,226.29579 -0.01343,-0.67147 -0.01343,-0.67147 4.834564,-0.0671 0.01343,0.67146 0.01343,0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1485 \" \ r \ n " +
" d= \" m 26.47013,226.22864 c -0.01343,0 -0.01343,0 -0.01343,0 l -0.01343,-0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1487 \" \ r \ n " +
" d= \" m 26.47013,226.22864 -0.02686,-0.67147 -0.02686,-0.67146 4.834565,-0.17459 0.02686,0.67147 0.02686,0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1489 \" \ r \ n " +
" d= \" m 31.331552,226.05406 c -0.01343,0 -0.02686,0 -0.02686,0 l -0.02686,-0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1491 \" \ r \ n " +
" d= \" m 31.331552,226.05406 -0.05372,-0.67147 -0.05372,-0.67147 9.669128,-0.72518 0.05372,0.67147 0.05372,0.67146 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1493 \" \ r \ n " +
" d= \" m 41.027541,225.32887 c -0.01343,0 -0.02686,0 -0.02686,0 l -0.05372,-0.67146 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1495 \" \ r \ n " +
" d= \" m 41.027541,225.32887 -0.08058,-0.67146 -0.08058,-0.67147 4.834564,-0.53718 0.08058,0.67147 0.08058,0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1497 \" \ r \ n " +
" d= \" m 45.875534,224.7917 c -0.01343,0 -0.01343,0 -0.01343,0 l -0.08058,-0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1499 \" \ r \ n " +
" d= \" m 45.875534,224.7917 -0.09401,-0.67147 -0.09401,-0.67147 4.834564,-0.65803 0.09401,0.67146 0.09401,0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1501 \" \ r \ n " +
" d= \" m 50.736956,224.13366 c -0.01343,0 -0.02686,0 -0.02686,0 l -0.09401,-0.67147 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1503 \" \ r \ n " +
" d= \" m 50.736956,224.13366 -0.120864,-0.67147 -0.120864,-0.67146 9.669128,-1.66524 0.120864,0.67147 0.120864,0.67146 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1505 \" \ r \ n " +
" d= \" m 60.432942,222.45499 c -0.01343,0 -0.02686,0.0134 -0.02686,0.0134 l -0.120864,-0.67146 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1507 \" \ r \ n " +
" d= \" m 60.432942,222.45499 -0.147722,-0.65803 -0.147722,-0.65804 9.669128,-2.16212 0.147722,0.65803 0.147722,0.65804 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1509 \" \ r \ n " +
" d= \" m 70.128928,220.29287 c 0,0 -0.01343,0 -0.02686,0 l -0.14772,-0.65804 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1511 \" \ r \ n " +
" d= \" m 70.128928,220.29287 -0.17458,-0.65804 -0.174583,-0.65803 9.669128,-2.63216 0.174583,0.65804 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1513 \" \ r \ n " +
" d= \" m 79.824917,217.64729 c 0,0 -0.01343,0.0134 -0.02686,0.0134 l -0.17458,-0.65804 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1515 \" \ r \ n " +
" d= \" m 79.824917,217.64729 -0.201441,-0.64461 -0.201441,-0.64461 9.669123,-3.10218 0.20145,0.64461 0.20144,0.64461 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1517 \" \ r \ n " +
" d= \" m 89.534328,214.53168 c -0.0134,0.0134 -0.0268,0.0134 -0.0403,0.0134 l -0.20144,-0.64461 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1519 \" \ r \ n " +
" d= \" m 89.534328,214.53168 -0.24172,-0.63118 -0.24173,-0.63118 9.66913,-3.58563 0.24172,0.63118 0.24173,0.63118 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1521 \" \ r \ n " +
" d= \" m 99.230318,210.94605 c -0.0134,0 -0.0269,0 -0.0269,0 l -0.24173,-0.63118 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1523 \" \ r \ n " +
" d= \" m 99.230318,210.94605 -0.26859,-0.63118 -0.26859,-0.63118 9.669132,-4.0691 0.26859,0.63119 0.26859,0.63117 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1525 \" \ r \ n " +
" d= \" m 108.91288,206.86352 c 0,0 -0.0134,0 -0.0134,0.0134 l -0.26859,-0.63117 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1527 \" \ r \ n " +
" d= \" m 108.91288,206.86352 -0.28202,-0.61774 -0.28202,-0.61775 9.6557,-4.53912 0.28202,0.61775 0.28202,0.61775 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1529 \" \ r \ n " +
" d= \" m 118.59543,202.31098 c 0,0 -0.0134,0 -0.0268,0.0134 l -0.28202,-0.61775 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1531 \" \ r \ n " +
" d= \" m 118.59543,202.31098 -0.30887,-0.60432 -0.30888,-0.60432 9.66913,-5.03601 0.30888,0.60432 0.30887,0.60432 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1533 \" \ r \ n " +
" d= \" m 128.29142,197.26154 c -0.0134,0 -0.0134,0.0134 -0.0269,0.0134 l -0.30887,-0.60432 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1535 \" \ r \ n " +
" d= \" m 128.29142,197.26154 -0.33573,-0.59089 -0.33574,-0.59089 9.66913,-5.4926 0.33574,0.59089 0.33573,0.59089 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1537 \" \ r \ n " +
" d= \" m 137.98741,191.75551 c -0.0134,0 -0.0134,0 -0.0269,0.0134 0,0 0,0 0,0 l -0.33573,-0.59089 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1539 \" \ r \ n " +
" d= \" m 137.98741,191.75551 -0.36259,-0.57746 -0.3626,-0.57746 9.66913,-5.97606 0.36259,0.57746 0.3626,0.57746 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1541 \" \ r \ n " +
" d= \" m 147.66997,185.76603 c 0,0 -0.0134,0.0134 -0.0134,0.0134 l -0.3626,-0.57746 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1543 \" \ r \ n " +
" d= \" m 147.66997,185.76603 -0.37603,-0.56404 -0.37602,-0.56403 9.66913,-6.44609 0.37602,0.56404 0.37602,0.56403 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1545 \" \ r \ n " +
" d= \" m 157.35252,179.31994 c 0,0 -0.0134,0 -0.0134,0 l -0.37602,-0.56403 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1547 \" \ r \ n " +
" d= \" m 157.35252,179.31994 -0.38945,-0.56403 -0.38945,-0.56404 1.35636,-0.94005 0.38945,0.56403 0.38946,0.56404 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1549 \" \ r \ n " +
" d= \" m 158.72232,178.36646 c -0.0134,0 -0.0134,0 -0.0134,0.0134 l -0.38946,-0.56404 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1551 \" \ r \ n " +
" d= \" m 158.72232,178.36646 -0.40289,-0.55061 -0.40287,-0.5506 8.31276,-6.00292 0.40288,0.55061 0.40288,0.5506 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1553 \" \ r \ n " +
" d= \" m 167.04851,172.35011 c -0.0134,0 -0.0134,0.0134 -0.0134,0.0134 l -0.40288,-0.5506 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1555 \" \ r \ n " +
" d= \" m 167.04851,172.35011 -0.41631,-0.53717 -0.41631,-0.53718 8.43363,-6.43265 0.41631,0.53717 0.41631,0.53718 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1557 \" \ r \ n " +
" d= \" m 175.48214,165.91746 c 0,0 0,0 0,0 l -0.41631,-0.53718 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1559 \" \ r \ n " +
" d= \" m 175.48214,165.91746 -0.41631,-0.53718 -0.41631,-0.53717 1.2355,-0.98034 0.41631,0.53717 0.41631,0.53717 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1561 \" \ r \ n " +
" d= \" m 176.73107,164.92368 c 0,0 0,0 -0.0134,0.0134 l -0.41631,-0.53717 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1563 \" \ r \ n " +
" d= \" m 176.73107,164.92368 -0.42974,-0.52374 -0.42974,-0.52375 9.66913,-7.89645 0.42973,0.52374 0.42974,0.52375 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1565 \" \ r \ n " +
" d= \" m 186.41362,157.0138 c 0,0.0134 -0.0134,0.0134 -0.0134,0.0134 l -0.42974,-0.52375 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1567 \" \ r \ n " +
" d= \" m 186.41362,157.0138 -0.44317,-0.51032 -0.44316,-0.51031 9.66913,-8.36648 0.44316,0.51031 0.44317,0.51032 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1569 \" \ r \ n " +
" d= \" m 196.09618,148.63389 c 0,0.0134 -0.0134,0.0134 -0.0134,0.0134 l -0.44317,-0.51032 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1571 \" \ r \ n " +
" d= \" m 196.09618,148.63389 -0.4566,-0.49689 -0.4566,-0.49688 9.66913,-8.84994 0.4566,0.49688 0.4566,0.49689 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1573 \" \ r \ n " +
" d= \" m 205.77874,139.77052 c 0,0.0134 -0.0134,0.0134 -0.0134,0.0134 l -0.4566,-0.49689 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1575 \" \ r \ n " +
" d= \" m 205.77874,139.77052 -0.47003,-0.48346 -0.47003,-0.48345 9.68256,-9.31997 0.47003,0.48346 0.47003,0.48345 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1577 \" \ r \ n " +
" d= \" m 22.280175,225.63775 -0.671467,-0.0134 -0.671467,-0.0134 0.01343,-1.07435 0.671467,0.0134 0.671467,0.0134 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1579 \" \ r \ n " +
" d= \" m 20.95067,224.53654 c 0,-0.0672 0,-0.13429 0.02686,-0.20144 l 0.644609,0.21487 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1581 \" \ r \ n " +
" d= \" m 22.266745,224.76484 -0.644608,-0.21487 -0.644609,-0.21487 4.821135,-14.06052 0.644609,0.21487 0.644608,0.21487 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1583 \" \ r \ n " +
" d= \" m 25.798663,210.27458 c 0.01343,-0.0403 0.04029,-0.0806 0.05372,-0.12087 0.01343,-0.0268 0.04029,-0.0537 0.05372,-0.0806 l 0.537174,0.41631 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1585 \" \ r \ n " +
" d= \" m 26.980446,210.90576 -0.537174,-0.41631 -0.537174,-0.41631 4.834564,-6.25808 0.537174,0.41631 0.537175,0.41631 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1587 \" \ r \ n " +
" d= \" m 30.740662,203.81506 c 0.02686,-0.0268 0.05372,-0.0537 0.08058,-0.0806 l 0.456598,0.49688 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1589 \" \ r \ n " +
" d= \" m 31.734434,204.72826 -0.456598,-0.49689 -0.456598,-0.49688 9.669128,-8.86337 0.456598,0.49688 0.456598,0.49689 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1591 \" \ r \ n " +
" d= \" m 40.490366,194.87112 c 0.01343,-0.0134 0.04029,-0.0403 0.05372,-0.0537 l 0.402882,0.5506 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1593 \" \ r \ n " +
" d= \" m 41.349843,195.91861 -0.402879,-0.55061 -0.402882,-0.5506 4.834564,-3.5722 0.402882,0.5506 0.402879,0.5506 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1595 \" \ r \ n " +
" d= \" m 45.378646,191.2452 c 0.01343,0 0.01343,-0.0134 0.02686,-0.0134 l 0.376021,0.56403 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1597 \" \ r \ n " +
" d= \" m 46.157549,192.35983 -0.376021,-0.56403 -0.376021,-0.56403 4.834564,-3.23648 0.376021,0.56404 0.376021,0.56403 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1599 \" \ r \ n " +
" d= \" m 50.240071,187.99529 c 0.01343,0 0.01343,-0.0134 0.02686,-0.0134 l 0.349163,0.57746 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1601 \" \ r \ n " +
" d= \" m 50.965255,189.13679 -0.349163,-0.57746 -0.349163,-0.57746 9.669128,-5.7209 0.349163,0.57746 0.349163,0.57746 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1603 \" \ r \ n " +
" d= \" m 59.936057,182.26097 c 0,-0.0134 0.01343,-0.0134 0.01343,-0.0134 0,0 0.01343,0 0.02686,-0.0134 l 0.308876,0.60432 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1605 \" \ r \ n " +
" d= \" m 60.594096,183.44275 -0.308876,-0.60432 -0.308876,-0.60432 9.669128,-5.03601 0.308876,0.60432 0.308872,0.60432 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1607 \" \ r \ n " +
" d= \" m 69.645472,177.1981 c 0,0 0.01343,0 0.01343,-0.0134 l 0.295447,0.61774 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1609 \" \ r \ n " +
" d= \" m 70.249791,178.42017 -0.295443,-0.61775 -0.295447,-0.61774 9.669128,-4.56598 0.295447,0.61775 0.295443,0.61775 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1611 \" \ r \ n " +
" d= \" m 79.328029,172.6187 c 0.01343,0 0.01343,0 0.02686,0 l 0.268589,0.61775 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1613 \" \ r \ n " +
" d= \" m 79.892062,173.8542 -0.268586,-0.61775 -0.268589,-0.61775 9.669131,-4.20339 0.26859,0.61775 0.26858,0.61775 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1615 \" \ r \ n " +
" d= \" m 89.024018,168.41531 c 0,0 0.0134,-0.0134 0.0134,-0.0134 l 0.25516,0.63118 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1617 \" \ r \ n " +
" d= \" m 89.547758,169.66424 -0.25515,-0.63118 -0.25516,-0.63118 9.66913,-3.90794 0.25515,0.63118 0.25516,0.63118 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1619 \" \ r \ n " +
" d= \" m 98.706578,164.49394 c 0,0 0.0134,0 0.0134,0 l 0.24172,0.63118 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1621 \" \ r \ n " +
" d= \" m 99.203458,165.7563 -0.24173,-0.63118 -0.24172,-0.63118 9.669122,-3.66621 0.24173,0.63118 0.24173,0.63118 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1623 \" \ r \ n " +
" d= \" m 108.38913,160.82773 c 0,0 0.0134,0 0.0134,-0.0134 l 0.2283,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1625 \" \ r \ n " +
" d= \" m 108.85916,162.10352 -0.2283,-0.64461 -0.2283,-0.64461 9.6557,-3.4782 0.2283,0.64461 0.2283,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1627 \" \ r \ n " +
" d= \" m 118.05826,157.3361 c 0,0 0,0 0.0134,0 l 0.21487,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1629 \" \ r \ n " +
" d= \" m 118.50143,158.62532 -0.21487,-0.64461 -0.21487,-0.64461 9.66913,-3.30362 0.21487,0.64461 0.21487,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1631 \" \ r \ n " +
" d= \" m 127.74082,154.03248 c 0,0 0,0 0,0 l 0.21487,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1633 \" \ r \ n " +
" d= \" m 128.17056,155.3217 -0.21487,-0.64461 -0.21487,-0.64461 9.66913,-3.15589 0.21487,0.64461 0.21486,0.6446 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1635 \" \ r \ n " +
" d= \" m 137.40995,150.87659 c 0.0134,0 0.0134,0 0.0134,0 l 0.20144,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1637 \" \ r \ n " +
" d= \" m 137.82625,152.1658 -0.20143,-0.6446 -0.20144,-0.64461 9.66912,-3.0216 0.20144,0.6446 0.20144,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1639 \" \ r \ n " +
" d= \" m 147.0925,147.85499 c 0,0 0,0 0,0 l 0.20144,0.6446 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1641 \" \ r \ n " +
" d= \" m 147.49538,149.1442 -0.20144,-0.64461 -0.20144,-0.6446 9.66913,-2.91417 0.20144,0.64461 0.20144,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1643 \" \ r \ n " +
" d= \" m 156.76163,144.94082 c 0,0 0.0134,0 0.0134,0 l 0.18801,0.64461 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1645 \" \ r \ n " +
" d= \" m 157.15108,146.23004 -0.18801,-0.64461 -0.18801,-0.64461 1.35637,-0.40288 0.188,0.64461 0.18802,0.6446 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1647 \" \ r \ n " +
" d= \" m 158.13143,144.53794 c 0,0 0,0 0,-0.0134 l 0.188,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1649 \" \ r \ n " +
" d= \" m 158.50745,145.84058 -0.18802,-0.65803 -0.188,-0.65804 8.31276,-2.40386 0.18801,0.65804 0.18801,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1651 \" \ r \ n " +
" d= \" m 166.44419,142.12065 c 0,0 0,0 0,0 l 0.18801,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1653 \" \ r \ n " +
" d= \" m 166.82021,143.43673 -0.18801,-0.65804 -0.18801,-0.65804 8.43363,-2.37699 0.18801,0.65804 0.18801,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1655 \" \ r \ n " +
" d= \" m 174.87782,139.74366 c 0,0 0.0134,0 0.0134,0 l 0.17459,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1657 \" \ r \ n " +
" d= \" m 175.24041,141.05974 -0.17458,-0.65804 -0.17459,-0.65804 1.23551,-0.33573 0.17458,0.65803 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1659 \" \ r \ n " +
" d= \" m 176.47591,140.724 c 0,0 0,0 0,0 l -0.17458,-0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1661 \" \ r \ n " +
" d= \" m 176.47591,140.724 -0.17458,-0.65804 -0.17458,-0.65803 9.66912,-2.64558 0.17458,0.65803 0.17459,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1663 \" \ r \ n " +
" d= \" m 185.79587,136.76235 c 0,0 0,0 0,0 l 0.17458,0.65803 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1665 \" \ r \ n " +
" d= \" m 186.14504,138.07842 -0.17459,-0.65804 -0.17458,-0.65803 9.66913,-2.55158 0.17458,0.65804 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1667 \" \ r \ n " +
" d= \" m 195.465,134.21077 c 0,0 0,0 0,0 l 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1669 \" \ r \ n " +
" d= \" m 195.81416,135.52685 -0.17458,-0.65804 -0.17458,-0.65804 9.66913,-2.48443 0.17458,0.65804 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1671 \" \ r \ n " +
" d= \" m 205.13413,131.72634 c 0.0134,0 0.0134,0 0.0134,0 l 0.16115,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1673 \" \ r \ n " +
" d= \" m 205.46986,133.04242 -0.16115,-0.65804 -0.16115,-0.65804 9.68256,-2.41728 0.16115,0.65804 0.16115,0.65804 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1675 \" \ r \ n " +
" d= \" m 22.280175,225.62432 h -0.671467 -0.671467 l 0.01343,-4.79428 h 0.671467 0.671467 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1677 \" \ r \ n " +
" d= \" m 20.95067,220.83004 c 0,-0.0537 0,-0.094 0.01343,-0.13429 l 0.658038,0.13429 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1679 \" \ r \ n " +
" d= \" m 22.280175,220.96434 -0.658038,-0.1343 -0.658038,-0.13429 4.821135,-23.19248 0.658038,0.1343 0.658037,0.13429 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1681 \" \ r \ n " +
" d= \" m 25.785234,197.50327 c 0.01343,-0.0806 0.04029,-0.14772 0.06715,-0.20144 0.01343,-0.0134 0.01343,-0.0269 0.02686,-0.0403 l 0.564033,0.37603 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1683 \" \ r \ n " +
" d= \" m 27.007304,198.01359 -0.564032,-0.37602 -0.564033,-0.37603 4.834564,-7.26527 0.564033,0.37602 0.564033,0.37602 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1685 \" \ r \ n " +
" d= \" m 30.713803,189.99627 c 0.02686,-0.0403 0.06715,-0.0806 0.09401,-0.12086 l 0.470027,0.49688 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1687 \" \ r \ n " +
" d= \" m 31.747863,190.86917 -0.470027,-0.49688 -0.470027,-0.49688 9.669128,-9.15882 0.470027,0.49689 0.470027,0.49688 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1689 \" \ r \ n " +
" d= \" m 40.476937,180.71659 c 0.02686,-0.0134 0.05372,-0.0403 0.08057,-0.0537 l 0.389453,0.5506 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1691 \" \ r \ n " +
" d= \" m 41.336414,181.76408 -0.38945,-0.5506 -0.389453,-0.5506 4.834564,-3.41106 0.389453,0.5506 0.38945,0.55061 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1693 \" \ r \ n " +
" d= \" m 45.392075,177.25182 c 0.01343,-0.0134 0.01343,-0.0134 0.02686,-0.0269 l 0.362592,0.57746 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1695 \" \ r \ n " +
" d= \" m 46.14412,178.37989 -0.362592,-0.57747 -0.362592,-0.57746 4.834564,-3.00817 0.362592,0.57746 0.362592,0.57746 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1697 \" \ r \ n " +
" d= \" m 50.2535,174.21679 c 0.01343,0 0.01343,0 0.02686,-0.0134 0,0 0.01343,0 0.01343,-0.0134 l 0.322305,0.60432 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1699 \" \ r \ n " +
" d= \" m 50.938397,175.39857 -0.322305,-0.60432 -0.322305,-0.60432 9.669128,-5.11658 0.322305,0.60432 0.322305,0.60432 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1701 \" \ r \ n " +
" d= \" m 59.962915,169.07335 c 0.01343,0 0.02686,-0.0134 0.04029,-0.0134 l 0.282018,0.61775 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1703 \" \ r \ n " +
" d= \" m 60.567235,170.29542 -0.282015,-0.61775 -0.282018,-0.61775 9.669128,-4.31082 0.282018,0.61775 0.282015,0.61775 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1705 \" \ r \ n " +
" d= \" m 69.67233,164.7491 c 0.01343,0 0.02686,-0.0134 0.04029,-0.0134 l 0.241728,0.63118 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1707 \" \ r \ n " +
" d= \" m 70.196076,165.99803 -0.241728,-0.63118 -0.241728,-0.63118 9.669128,-3.78707 0.241728,0.63118 0.241728,0.63117 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1709 \" \ r \ n " +
" d= \" m 79.381748,160.9486 c 0,0 0.01343,0 0.01343,-0.0134 l 0.228299,0.64461 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1711 \" \ r \ n " +
" d= \" m 79.851775,162.22439 -0.228299,-0.64461 -0.228299,-0.64461 9.669131,-3.37077 0.2283,0.64461 0.22829,0.64461 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1713 \" \ r \ n " +
" d= \" m 89.064308,157.5644 c 0.0134,0 0.0134,0 0.0268,0 l 0.20145,0.64461 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1715 \" \ r \ n " +
" d= \" m 89.494048,158.85362 -0.20144,-0.64461 -0.20145,-0.64461 9.66913,-3.07532 0.20144,0.64461 0.20144,0.64461 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1717 \" \ r \ n " +
" d= \" m 98.760288,154.48908 c 0,0 0,0 0.0134,0 l 0.18801,0.64461 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1719 \" \ r \ n " +
" d= \" m 99.149738,155.7783 -0.18801,-0.64461 -0.18801,-0.64461 9.669132,-2.82016 0.18801,0.64461 0.18801,0.64461 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1721 \" \ r \ n " +
" d= \" m 108.44285,151.66892 c 0,-0.0134 0,-0.0134 0.0134,-0.0134 l 0.17458,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1723 \" \ r \ n " +
" d= \" m 108.80544,152.97156 -0.17458,-0.65803 -0.17458,-0.65804 9.6557,-2.61872 0.17458,0.65804 0.17458,0.65803 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1725 \" \ r \ n " +
" d= \" m 118.11198,149.03677 c 0,0 0,0 0.0134,0 l 0.16115,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1727 \" \ r \ n " +
" d= \" m 118.44771,150.35284 -0.16115,-0.65803 -0.16115,-0.65804 9.66912,-2.44414 0.16116,0.65804 0.16115,0.65803 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1729 \" \ r \ n " +
" d= \" m 127.79453,146.59263 c 0,0 0,0 0,0 l 0.16116,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1731 \" \ r \ n " +
" d= \" m 128.11684,147.9087 -0.16115,-0.65803 -0.16116,-0.65804 9.66913,-2.30985 0.16116,0.65804 0.16115,0.65803 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1733 \" \ r \ n " +
" d= \" m 137.46366,144.28278 c 0,0 0.0134,0 0.0134,0 l 0.14773,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1735 \" \ r \ n " +
" d= \" m 137.77254,145.59885 -0.14772,-0.65803 -0.14773,-0.65804 9.66913,-2.18898 0.14772,0.65803 0.14773,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1737 \" \ r \ n " +
" d= \" m 147.14622,142.0938 c 0,0 0,0 0,0 l 0.14772,0.65803 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1739 \" \ r \ n " +
" d= \" m 147.44167,143.40987 -0.14773,-0.65804 -0.14772,-0.65803 9.66913,-2.06812 0.14772,0.65803 0.14772,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1741 \" \ r \ n " +
" d= \" m 156.81535,140.02568 c 0.0134,0 0.0134,0 0.0134,0 l 0.13429,0.65803 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1743 \" \ r \ n " +
" d= \" m 157.09737,141.34175 -0.1343,-0.65804 -0.13429,-0.65803 1.35636,-0.28202 0.13429,0.65804 0.1343,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1745 \" \ r \ n " +
" d= \" m 158.18514,139.74366 c 0,0 0,0 0,0 l 0.13429,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1747 \" \ r \ n " +
" d= \" m 158.45373,141.05974 -0.1343,-0.65804 -0.13429,-0.65804 8.31276,-1.6921 0.1343,0.65804 0.13429,0.65804 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1749 \" \ r \ n " +
" d= \" m 166.4979,138.05156 c 0,-0.0134 0,-0.0134 0,-0.0134 l 0.1343,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1751 \" \ r \ n " +
" d= \" m 166.76649,139.38107 -0.13429,-0.67147 -0.1343,-0.67147 8.43364,-1.65181 0.13429,0.67147 0.13429,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1753 \" \ r \ n " +
" d= \" m 174.93154,136.38632 c 0,0 0,0 0,0 l 0.13429,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1755 \" \ r \ n " +
" d= \" m 175.20012,137.72926 -0.13429,-0.67147 -0.13429,-0.67147 1.23549,-0.24172 0.1343,0.67146 0.13429,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1757 \" \ r \ n " +
" d= \" m 176.16703,136.1446 c 0,0 0.0134,0 0.0134,0 l 0.12087,0.67146 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1759 \" \ r \ n " +
" d= \" m 176.42219,137.48753 -0.12086,-0.67147 -0.12087,-0.67146 9.66913,-1.81297 0.12086,0.67147 0.12087,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1761 \" \ r \ n " +
" d= \" m 185.84959,134.33163 c 0,0 0,0 0,0 l 0.12086,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1763 \" \ r \ n " +
" d= \" m 186.09132,135.67457 -0.12087,-0.67147 -0.12086,-0.67147 9.66913,-1.74581 0.12086,0.67147 0.12087,0.67146 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1765 \" \ r \ n " +
" d= \" m 195.51872,132.58582 c 0,0 0,0 0,0 l 0.12086,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1767 \" \ r \ n " +
" d= \" m 195.76045,133.92875 -0.12087,-0.67146 -0.12086,-0.67147 9.66913,-1.67867 0.12086,0.67147 0.12086,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1769 \" \ r \ n " +
" d= \" m 205.18785,130.90715 c 0,0 0.0134,0 0.0134,0 l 0.10744,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1771 \" \ r \ n " +
" d= \" m 205.41614,132.25009 -0.10743,-0.67147 -0.10744,-0.67147 9.68256,-1.61152 0.10744,0.67147 0.10743,0.67147 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1773 \" \ r \ n " +
" d= \" m 21.648996,226.16149 -0.04029,-0.53717 -0.04029,-0.53717 4.834564,-0.38946 0.04029,0.53718 0.04029,0.53717 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1775 \" \ r \ n " +
" d= \" m 26.523848,225.77204 c -0.01343,0 -0.02686,0 -0.04029,0 l -0.04029,-0.53717 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1777 \" \ r \ n " +
" d= \" m 26.523848,225.77204 -0.08058,-0.53717 -0.08058,-0.53718 4.834563,-0.68489 0.08058,0.53717 0.08058,0.53718 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1779 \" \ r \ n " +
" d= \" m 31.385271,225.08715 c -0.01343,0 -0.02686,0 -0.02686,0 l -0.08058,-0.53718 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1781 \" \ r \ n " +
" d= \" m 31.385271,225.08715 -0.107435,-0.53718 -0.107435,-0.53717 9.669128,-1.96069 0.107435,0.53718 0.107435,0.53717 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1783 \" \ r \ n " +
" d= \" m 41.081257,223.11303 c -0.01343,0 -0.01343,0.0134 -0.02686,0.0134 l -0.107435,-0.53717 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1785 \" \ r \ n " +
" d= \" m 41.081257,223.11303 -0.134293,-0.52374 -0.134293,-0.52375 4.834564,-1.19521 0.134293,0.52375 0.134293,0.52374 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1787 \" \ r \ n " +
" d= \" m 45.92925,221.91782 c -0.01343,0 -0.01343,0 -0.01343,0 l -0.134293,-0.52374 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1789 \" \ r \ n " +
" d= \" m 45.92925,221.91782 -0.147722,-0.52374 -0.147722,-0.52375 4.834564,-1.32951 0.147722,0.52375 0.147722,0.52375 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1791 \" \ r \ n " +
" d= \" m 50.777243,220.58832 c 0,0 -0.01343,0 -0.01343,0 l -0.147722,-0.52375 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1793 \" \ r \ n " +
" d= \" m 50.777243,220.58832 -0.161151,-0.52375 -0.161154,-0.52375 9.669128,-3.00817 0.161154,0.52375 0.161151,0.52374 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1795 \" \ r \ n " +
" d= \" m 60.4598,217.56671 c 0,0 -0.01343,0.0134 -0.01343,0.0134 l -0.161151,-0.52374 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1797 \" \ r \ n " +
" d= \" m 60.4598,217.56671 -0.17458,-0.51031 -0.174583,-0.51032 9.669128,-3.39762 0.174583,0.51031 0.17458,0.51032 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1799 \" \ r \ n " +
" d= \" m 70.155789,214.16909 c -0.01343,0 -0.01343,0 -0.02686,0 l -0.17458,-0.51032 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1801 \" \ r \ n " +
" d= \" m 70.155789,214.16909 -0.201441,-0.51032 -0.201441,-0.51031 9.669128,-3.76022 0.201441,0.51032 0.201441,0.51031 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1803 \" \ r \ n " +
" d= \" m 79.838346,210.39544 c -0.01343,0 -0.01343,0.0134 -0.01343,0.0134 l -0.201441,-0.51031 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1805 \" \ r \ n " +
" d= \" m 79.838346,210.39544 -0.21487,-0.49688 -0.21487,-0.49689 9.669132,-4.09595 0.21487,0.49689 0.21487,0.49688 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1807 \" \ r \ n " +
" d= \" m 89.520898,206.29949 c -0.0134,0 -0.0134,0 -0.0134,0 l -0.21487,-0.49688 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1809 \" \ r \ n " +
" d= \" m 89.520898,206.29949 -0.22829,-0.49688 -0.2283,-0.49689 9.66912,-4.39139 0.2283,0.49688 0.2283,0.49689 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1811 \" \ r \ n " +
" d= \" m 99.203458,201.89467 c -0.0134,0.0134 -0.0134,0.0134 -0.0134,0.0134 l -0.2283,-0.49689 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1813 \" \ r \ n " +
" d= \" m 99.203458,201.89467 -0.24173,-0.48346 -0.24172,-0.48345 9.669122,-4.67342 0.24173,0.48346 0.24173,0.48346 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1815 \" \ r \ n " +
" d= \" m 108.87259,197.22126 c 0,0 0,0 0,0 l -0.24173,-0.48346 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1817 \" \ r \ n " +
" d= \" m 108.87259,197.22126 -0.24173,-0.48346 -0.24173,-0.48346 9.6557,-4.942 0.24173,0.48346 0.24173,0.48346 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1819 \" \ r \ n " +
" d= \" m 118.54172,192.27926 c 0,0 0,0 -0.0134,0 l -0.24173,-0.48346 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1821 \" \ r \ n " +
" d= \" m 118.54172,192.27926 -0.25516,-0.48346 -0.25516,-0.48346 9.66913,-5.19715 0.25516,0.48345 0.25516,0.48346 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1823 \" \ r \ n " +
" d= \" m 128.22427,187.06867 c 0,0 -0.0134,0.0134 -0.0134,0.0134 l -0.25516,-0.48346 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1825 \" \ r \ n " +
" d= \" m 128.22427,187.06867 -0.26858,-0.47003 -0.26859,-0.47002 9.66913,-5.43889 0.26859,0.47003 0.26858,0.47003 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1827 \" \ r \ n " +
" d= \" m 137.8934,181.62979 c 0,0 0,0 0,0 0,0 0,0 0,0 l -0.26858,-0.47003 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1829 \" \ r \ n " +
" d= \" m 137.8934,181.62979 -0.26858,-0.47003 -0.26859,-0.47003 9.66913,-5.66718 0.26858,0.47003 0.26859,0.47002 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1831 \" \ r \ n " +
" d= \" m 147.57596,175.9626 c 0,0 0,0 -0.0134,0 l -0.26859,-0.47002 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1833 \" \ r \ n " +
" d= \" m 147.57596,175.9626 -0.28202,-0.47002 -0.28201,-0.47003 9.66912,-5.89548 0.28202,0.47003 0.28202,0.47002 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1835 \" \ r \ n " +
" d= \" m 157.24509,170.06712 c 0,0 0,0 0,0 l -0.28202,-0.47002 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1837 \" \ r \ n " +
" d= \" m 157.24509,170.06712 -0.28202,-0.47002 -0.28202,-0.47003 1.35637,-0.83262 0.28201,0.47002 0.28202,0.47003 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1839 \" \ r \ n " +
" d= \" m 158.61488,169.22107 c 0,0 -0.0134,0 -0.0134,0.0134 l -0.28202,-0.47003 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1841 \" \ r \ n " +
" d= \" m 158.61488,169.22107 -0.29545,-0.4566 -0.29544,-0.45659 8.31276,-5.27773 0.29545,0.45659 0.29544,0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1843 \" \ r \ n " +
" d= \" m 166.92764,163.94334 c 0,0 0,0 0,0 l -0.29544,-0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1845 \" \ r \ n " +
" d= \" m 166.92764,163.94334 -0.29544,-0.4566 -0.29545,-0.45659 8.43363,-5.49261 0.29545,0.4566 0.29544,0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1847 \" \ r \ n " +
" d= \" m 175.36127,158.45074 c 0,0 0,0 0,0 l -0.29544,-0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1849 \" \ r \ n " +
" d= \" m 175.36127,158.45074 -0.29544,-0.4566 -0.29545,-0.4566 1.2355,-0.81919 0.29545,0.4566 0.29544,0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1851 \" \ r \ n " +
" d= \" m 176.6102,157.63155 c 0,0 -0.0134,0 -0.0134,0 l -0.29544,-0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1853 \" \ r \ n " +
" d= \" m 176.6102,157.63155 -0.30887,-0.4566 -0.30888,-0.4566 9.66913,-6.51323 0.30887,0.4566 0.30888,0.45659 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1855 \" \ r \ n " +
" d= \" m 186.27933,151.10489 c 0,0 0,0 0,0.0134 l -0.30888,-0.4566 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1857 \" \ r \ n " +
" d= \" m 186.27933,151.10489 -0.30888,-0.44317 -0.30887,-0.44317 9.66913,-6.71467 0.30887,0.44317 0.30888,0.44317 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1859 \" \ r \ n " +
" d= \" m 195.96189,144.39022 c -0.0134,0 -0.0134,0 -0.0134,0 l -0.30888,-0.44317 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1861 \" \ r \ n " +
" d= \" m 195.96189,144.39022 -0.32231,-0.44317 -0.3223,-0.44317 9.66913,-6.90269 0.3223,0.44317 0.3223,0.44317 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1863 \" \ r \ n " +
" d= \" m 205.63101,137.48753 c 0,0 0,0 0,0 l -0.3223,-0.44317 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1865 \" \ r \ n " +
" d= \" m 205.63101,137.48753 -0.3223,-0.44317 -0.3223,-0.44317 9.68255,-7.07726 0.32231,0.44317 0.3223,0.44317 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1867 \" \ r \ n " +
" d= \" m 21.904153,226.22864 -0.295445,-0.60432 -0.295446,-0.60432 4.834564,-2.40385 0.295446,0.60432 0.295445,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1869 \" \ r \ n " +
" d= \" m 26.147826,222.61615 c 0,0 0,0 0,0 l 0.295446,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1871 \" \ r \ n " +
" d= \" m 26.738717,223.82479 -0.295445,-0.60432 -0.295446,-0.60432 4.834563,-2.39043 0.295447,0.60432 0.295444,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1873 \" \ r \ n " +
" d= \" m 31.57328,221.43436 -0.295444,-0.60432 -0.295447,-0.60432 9.669128,-4.78084 0.295447,0.60432 0.295444,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1875 \" \ r \ n " +
" d= \" m 41.242408,216.65352 -0.295444,-0.60432 -0.295447,-0.60432 4.834564,-2.39043 0.295447,0.60432 0.295444,0.60433 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1877 \" \ r \ n " +
" d= \" m 46.076972,214.2631 -0.295444,-0.60433 -0.295447,-0.60432 4.834564,-2.39042 0.295447,0.60432 0.295444,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1879 \" \ r \ n " +
" d= \" m 50.911536,211.87267 -0.295444,-0.60432 -0.295447,-0.60432 9.669128,-4.78085 0.295447,0.60432 0.295444,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1881 \" \ r \ n " +
" d= \" m 60.580664,207.09182 -0.295444,-0.60432 -0.295447,-0.60432 9.669128,-4.78084 0.295447,0.60432 0.295443,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1883 \" \ r \ n " +
" d= \" m 70.249791,202.31098 c 0,0 0,0 0,0 l -0.295443,-0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1885 \" \ r \ n " +
" d= \" m 70.249791,202.31098 -0.295443,-0.60432 -0.295447,-0.60432 9.669128,-4.79428 0.295447,0.60432 0.295443,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1887 \" \ r \ n " +
" d= \" m 79.328029,196.30806 c 0,0 0,0 0,0 l 0.295447,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1889 \" \ r \ n " +
" d= \" m 79.918919,197.5167 -0.295443,-0.60432 -0.295447,-0.60432 9.669129,-4.78085 0.29545,0.60432 0.29544,0.60433 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1891 \" \ r \ n " +
" d= \" m 89.588048,192.73586 -0.29544,-0.60433 -0.29545,-0.60432 9.66913,-4.78084 0.29544,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1893 \" \ r \ n " +
" d= \" m 99.257178,187.95501 -0.29545,-0.60432 -0.29544,-0.60432 9.669122,-4.78085 0.29545,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1895 \" \ r \ n " +
" d= \" m 108.33541,181.96552 c 0,0 0,0 0,0 l 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1897 \" \ r \ n " +
" d= \" m 108.92631,183.17416 -0.29545,-0.60432 -0.29545,-0.60432 9.6557,-4.76742 0.29545,0.60432 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1899 \" \ r \ n " +
" d= \" m 118.582,178.40674 c 0,0 0,0 0,0 l -0.29544,-0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1901 \" \ r \ n " +
" d= \" m 118.582,178.40674 -0.29544,-0.60432 -0.29545,-0.60432 9.66913,-4.79427 0.29545,0.60432 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1903 \" \ r \ n " +
" d= \" m 127.66024,172.40383 c 0,0 0,0 0,0 l 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1905 \" \ r \ n " +
" d= \" m 128.25113,173.61247 -0.29544,-0.60432 -0.29545,-0.60432 9.66913,-4.78085 0.29545,0.60432 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1907 \" \ r \ n " +
" d= \" m 137.92026,168.83162 -0.29544,-0.60432 -0.29545,-0.60432 9.66913,-4.78085 0.29544,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1909 \" \ r \ n " +
" d= \" m 147.58939,164.05077 -0.29545,-0.60432 -0.29544,-0.60432 9.66913,-4.78084 0.29544,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1911 \" \ r \ n " +
" d= \" m 157.25852,159.26993 c 0,0 0,0 0,0 l -0.29545,-0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1913 \" \ r \ n " +
" d= \" m 157.25852,159.26993 -0.29545,-0.60432 -0.29544,-0.60432 1.35636,-0.67147 0.29544,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1915 \" \ r \ n " +
" d= \" m 158.02399,157.38982 c 0,0 0,0 0,0 l 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1917 \" \ r \ n " +
" d= \" m 158.61488,158.59846 -0.29545,-0.60432 -0.29544,-0.60432 8.31276,-4.10938 0.29545,0.60432 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1919 \" \ r \ n " +
" d= \" m 166.92764,154.48908 c 0,0 0,0 0,0 l -0.29544,-0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1921 \" \ r \ n " +
" d= \" m 166.92764,154.48908 -0.29544,-0.60432 -0.29545,-0.60432 8.43363,-4.17652 0.29545,0.60431 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1923 \" \ r \ n " +
" d= \" m 175.3747,150.31255 c 0,0 -0.0134,0 -0.0134,0 l -0.29544,-0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1925 \" \ r \ n " +
" d= \" m 175.3747,150.31255 -0.30887,-0.60432 -0.30888,-0.60431 1.2355,-0.61776 0.30888,0.60433 0.30887,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1927 \" \ r \ n " +
" d= \" m 175.99245,148.48616 c 0,0 0.0134,0 0.0134,0 l 0.29545,0.60433 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1929 \" \ r \ n " +
" d= \" m 176.59677,149.69481 -0.29544,-0.60432 -0.29545,-0.60433 9.66913,-4.78084 0.29544,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1931 \" \ r \ n " +
" d= \" m 186.2659,144.91396 -0.29545,-0.60432 -0.29544,-0.60432 9.66913,-4.78085 0.29544,0.60432 0.29545,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1933 \" \ r \ n " +
" d= \" m 195.93503,140.13311 -0.29545,-0.60432 -0.29544,-0.60432 9.66913,-4.78085 0.29544,0.60432 0.29545,0.60433 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1935 \" \ r \ n " +
" d= \" m 205.01327,134.14362 c 0,0 0,0 0,0 l 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path1937 \" \ r \ n " +
" d= \" m 205.60416,135.35227 -0.29545,-0.60433 -0.29544,-0.60432 9.68255,-4.78084 0.29545,0.60432 0.29544,0.60432 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <text \ r \ n " +
" id= \" text1943 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 17.512756 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1941 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 17.512756 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1939 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >0%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1949 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 35.252922 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1947 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 35.252922 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1945 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >10%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1955 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 54.591179 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1953 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 54.591179 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1951 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >20%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1961 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 73.929436 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1959 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 73.929436 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1957 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >30%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1967 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 93.267693 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1965 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 93.267693 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1963 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >40%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1973 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 112.60595 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1971 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 112.60595 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1969 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >50%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1979 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 131.9442 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1977 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 131.9442 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1975 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >60%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1985 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 151.28246 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1983 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 151.28246 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1981 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >70%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1991 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 170.62071 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1989 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 170.62071 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1987 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >80%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text1997 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 189.95897 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan1995 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 189.95897 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1993 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >90%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2003 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 207.71255 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2001 \" \ r \ n " +
" y= \" 233.95052 \" \ r \ n " +
" x= \" 207.71255 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan1999 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >100%</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2009 \" \ r \ n " +
" y= \" 227.58501 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2007 \" \ r \ n " +
" y= \" 227.58501 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2005 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >0</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2015 \" \ r \ n " +
" y= \" 218.00987 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2013 \" \ r \ n " +
" y= \" 218.00987 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2011 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >2</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2021 \" \ r \ n " +
" y= \" 208.44818 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2019 \" \ r \ n " +
" y= \" 208.44818 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2017 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >4</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2027 \" \ r \ n " +
" y= \" 198.87306 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2025 \" \ r \ n " +
" y= \" 198.87306 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2023 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >6</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2033 \" \ r \ n " +
" y= \" 189.31137 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2031 \" \ r \ n " +
" y= \" 189.31137 \" \ r \ n " +
" x= \" 15.055187 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2029 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >8</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2039 \" \ r \ n " +
" y= \" 179.74968 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2037 \" \ r \ n " +
" y= \" 179.74968 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2035 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >10</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2045 \" \ r \ n " +
" y= \" 170.17456 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2043 \" \ r \ n " +
" y= \" 170.17456 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2041 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >12</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2051 \" \ r \ n " +
" y= \" 160.61285 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2049 \" \ r \ n " +
" y= \" 160.61285 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2047 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >14</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2057 \" \ r \ n " +
" y= \" 151.03773 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2055 \" \ r \ n " +
" y= \" 151.03773 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2053 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >16</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2063 \" \ r \ n " +
" y= \" 141.47604 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2061 \" \ r \ n " +
" y= \" 141.47604 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2059 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >18</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2069 \" \ r \ n " +
" y= \" 131.91435 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2067 \" \ r \ n " +
" y= \" 131.91435 \" \ r \ n " +
" x= \" 11.859003 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2065 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.671px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >20</tspan></tspan></text> \ r \ n " +
" <path \ r \ n " +
" id= \" path2085 \" \ r \ n " +
" d= \" m 163.83889,186.26291 c 0,-0.0537 0.0134,-0.12086 0.0403,-0.17458 0.0269,-0.0537 0.0671,-0.094 0.12087,-0.12086 0.0537,-0.0269 0.12086,-0.0403 0.17458,-0.0403 v 0.33573 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <text \ r \ n " +
" id= \" text2139 \" \ r \ n " +
" y= \" 247.30235 \" \ r \ n " +
" x= \" 80.060562 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:8.79923px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.472441 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2137 \" \ r \ n " +
" y= \" 247.30235 \" \ r \ n " +
" x= \" 80.060562 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.472441 \" ><tspan \ r \ n " +
" id= \" tspan2135 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:8.79923px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.472441 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Proportion correcte</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" id= \" text2145 \" \ r \ n " +
" y= \" 2.8053498 \" \ r \ n " +
" x= \" -202.98183 \" \ r \ n " +
" transform= \" rotate(-90) \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:9.60255px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.515573 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2143 \" \ r \ n " +
" y= \" 2.8053498 \" \ r \ n " +
" x= \" -202.98183 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.515573 \" ><tspan \ r \ n " +
" id= \" tspan2141 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:9.60255px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.515573 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Note sur 20</tspan></tspan></text> \ r \ n " +
" <path \ r \ n " +
" id= \" path3478 \" \ r \ n " +
" d= \" M 21.388188,177.69129 215.2118,177.89271 \" \ r \ n " +
" style= \" fill:none;stroke:#000000;stroke-width:1.4194;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" /> \ r \ n " +
" <ellipse \ r \ n " +
" ry= \" 4.7163844 \" \ r \ n " +
" rx= \" 6.1738563 \" \ r \ n " +
" cy= \" 177.96814 \" \ r \ n " +
" cx= \" 13.999765 \" \ r \ n " +
" id= \" path3480 \" \ r \ n " +
" style= \" opacity:0.99;fill:none;fill-opacity:0.761745;stroke:#ff3838;stroke-width:1.41781;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" /> \ r \ n " +
" </g> \ r \ n " +
" <g \ r \ n " +
" id= \" g3476 \" \ r \ n " +
" transform= \" matrix(1.2416735,0,0,1.2416735,27.245694,-31.374873) \" > \ r \ n " +
" <path \ r \ n " +
" id= \" path2077 \" \ r \ n " +
" d= \" m 193.23573,222.75044 h -29.0611 v -36.48753 h 58.1222 v 36.48753 z \" \ r \ n " +
" style= \" fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2083 \" \ r \ n " +
" d= \" m 164.52379,222.75044 h -0.34916 -0.33574 v -36.48753 h 0.33574 0.34916 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2087 \" \ r \ n " +
" d= \" m 164.17463,186.61207 v -0.34916 -0.33573 h 72.38115 v 0.33573 0.34916 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.397082 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2091 \" \ r \ n " +
" d= \" m 235.85792,185.89405 h 0.33573 0.34916 v 36.48753 h -0.34916 -0.33573 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2095 \" \ r \ n " +
" d= \" m 236.51051,222.4147 v 0.33574 0.34916 h -72.73353 v -0.34916 -0.33574 z \" \ r \ n " +
" style= \" fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.562925 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2097 \" \ r \ n " +
" d= \" m 168.52574,190.238 v -0.6849 -0.67147 h 10.74347 v 0.67147 0.6849 z \" \ r \ n " +
" style= \" fill:#004586;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2099 \" \ r \ n " +
" d= \" m 168.52574,196.07976 v -0.5506 -0.53718 h 10.74347 v 0.53718 0.5506 z \" \ r \ n " +
" style= \" fill:#e8a202;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2101 \" \ r \ n " +
" d= \" m 168.52574,202.19011 v -0.68489 -0.67147 h 10.74347 v 0.67147 0.68489 z \" \ r \ n " +
" style= \" fill:#ff4200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2103 \" \ r \ n " +
" d= \" m 168.52574,208.16617 v -0.68489 -0.67147 h 10.74347 v 0.67147 0.68489 z \" \ r \ n " +
" style= \" fill:#a0522d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2105 \" \ r \ n " +
" d= \" m 168.52574,214.14223 v -0.6849 -0.67146 h 10.74347 v 0.67146 0.6849 z \" \ r \ n " +
" style= \" fill:#579d1c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <path \ r \ n " +
" id= \" path2107 \" \ r \ n " +
" d= \" m 168.52574,220.11829 v -0.6849 -0.67146 h 10.74347 v 0.67146 0.6849 z \" \ r \ n " +
" style= \" fill:#9400d3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.355827 \" /> \ r \ n " +
" <text \ r \ n " +
" id= \" text2133 \" \ r \ n " +
" y= \" 191.16461 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;line-height:126.158%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.355827 \" \ r \ n " +
" xml:space= \" preserve \" ><tspan \ r \ n " +
" id= \" tspan2111 \" \ r \ n " +
" y= \" 191.16461 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2109 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Progression 1 (linéaire)</tspan></tspan><tspan \ r \ n " +
" id= \" tspan2115 \" \ r \ n " +
" y= \" 197.14066 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2113 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Progression 1,5</tspan></tspan><tspan \ r \ n " +
" id= \" tspan2119 \" \ r \ n " +
" y= \" 203.1167 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2117 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Progression 0,33</tspan></tspan><tspan \ r \ n " +
" id= \" tspan2123 \" \ r \ n " +
" y= \" 209.09274 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2121 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Progression 0,5</tspan></tspan><tspan \ r \ n " +
" id= \" tspan2127 \" \ r \ n " +
" y= \" 215.06877 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2125 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Progression 2</tspan></tspan><tspan \ r \ n " +
" id= \" tspan2131 \" \ r \ n " +
" y= \" 221.04482 \" \ r \ n " +
" x= \" 180.61215 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" style= \" stroke-width:0.355827 \" ><tspan \ r \ n " +
" id= \" tspan2129 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:4.73695px;font-family:'Liberation Sans';fill:#000000;stroke-width:0.355827 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" dx= \" 0 \" >Progression 3</tspan></tspan></text> \ r \ n " +
" </g> \ r \ n " +
" </g> \ r \ n " +
" <text \ r \ n " +
" xml:space= \" preserve \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:700;font-size:5.41776px;line-height:125%;font-family:'Liberation Sans';text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.291865 \" \ r \ n " +
" x= \" 20.27533 \" \ r \ n " +
" y= \" 59.82999 \" \ r \ n " +
" id= \" text3051 \" ><tspan \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.28029px;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.291865 \" \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 20.27533 \" \ r \ n " +
" y= \" 59.82999 \" \ r \ n " +
" id= \" tspan3049 \" ><tspan \ r \ n " +
" dx= \" 0 \" \ r \ n " +
" dy= \" 0 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:6.28029px;font-family:Arial;-inkscape-font-specification:'Arial Bold';fill:#000000;stroke-width:0.291865 \" \ r \ n " +
" id= \" tspan3047 \" >Progression de la note en fonction de la proportion correcte</tspan></tspan></text> \ r \ n " +
" <text \ r \ n " +
" xml:space= \" preserve \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.66882px;line-height:100%;font-family:Zengo;-inkscape-font-specification:Zengo;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21258 \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 66.886063 \" \ r \ n " +
" id= \" text3888 \" ><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" id= \" tspan3886 \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 66.886063 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" >Exemple pour avoir une note de <tspan \ r \ n " +
" id= \" tspan5137 \" \ r \ n " +
" style= \" font-size:4.57426px;fill:#ff0000;stroke-width:0.21258 \" >10/20</tspan>, lorsque la progression est de</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 72.554886 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3890 \" > </tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 78.223701 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3894 \" > <tspan \ r \ n " +
" id= \" tspan5115 \" \ r \ n " +
" style= \" font-size:4.57426px;fill:#ff0000;stroke-width:0.21258 \" >0,33.</tspan> Il faut <tspan \ r \ n " +
" style= \" fill:#0000ff \" \ r \ n " +
" id= \" tspan3498 \" >12.5%</tspan> de proportion correcte.</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 83.892525 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3896 \" > <tspan \ r \ n " +
" id= \" tspan5121 \" \ r \ n " +
" style= \" fill:#ff0000;stroke-width:0.21258 \" > </tspan><tspan \ r \ n " +
" id= \" tspan5119 \" \ r \ n " +
" style= \" font-size:4.57426px;fill:#ff0000;stroke-width:0.21258 \" >0,5.</tspan> Il faut <tspan \ r \ n " +
" style= \" fill:#0000ff \" \ r \ n " +
" id= \" tspan3496 \" >25%</tspan> de proportion correcte.</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 89.56134 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3898 \" > <tspan \ r \ n " +
" id= \" tspan5125 \" \ r \ n " +
" style= \" font-size:4.57426px;fill:#ff0000;stroke-width:0.21258 \" >1.</tspan> Il faut <tspan \ r \ n " +
" style= \" fill:#0000ff \" \ r \ n " +
" id= \" tspan3494 \" >50%</tspan> de proportion correcte.</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 95.230164 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3482 \" > <tspan \ r \ n " +
" style= \" fill:#ff0000 \" \ r \ n " +
" id= \" tspan3484 \" >1,5.</tspan> Il faut <tspan \ r \ n " +
" style= \" fill:#0000ff \" \ r \ n " +
" id= \" tspan3486 \" >63%</tspan> de proportion correcte.</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 100.89898 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3900 \" > <tspan \ r \ n " +
" id= \" tspan5129 \" \ r \ n " +
" style= \" font-size:4.57426px;fill:#ff0000;stroke-width:0.21258 \" >2.</tspan> Il faut <tspan \ r \ n " +
" style= \" fill:#0000ff \" \ r \ n " +
" id= \" tspan3490 \" >70.7%</tspan> de proportion correcte.</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 106.5678 \" \ r \ n " +
" style= \" font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.96818px;line-height:100%;font-family:Arial;-inkscape-font-specification:'Arial Bold';stroke-width:0.21258 \" \ r \ n " +
" id= \" tspan3902 \" > <tspan \ r \ n " +
" id= \" tspan5133 \" \ r \ n " +
" style= \" font-size:4.57426px;fill:#ff0000;stroke-width:0.21258 \" >3. </tspan> Il faut <tspan \ r \ n " +
" style= \" fill:#0000ff \" \ r \ n " +
" id= \" tspan3492 \" >79.4%</tspan> de proportion correcte.</tspan><tspan \ r \ n " +
" sodipodi:role= \" line \" \ r \ n " +
" x= \" 140.30444 \" \ r \ n " +
" y= \" 112.23662 \" \ r \ n " +
" id= \" tspan3892 \" \ r \ n " +
" style= \" stroke-width:0.21258 \" /></text> \ r \ n " +
" </g> \ r \ n " +
" </g> \ r \ n " +
" </svg> " ;
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG de la note A .
* @return
* /
2022-04-25 13:25:20 +02:00
public static String NoteA ( ) {
return " <?xml version= \" 1.0 \" encoding= \" UTF-8 \" standalone= \" no \" ?> \ r \ n "
+ " <!-- Created with Inkscape (http://www.inkscape.org/) --> \ r \ n "
+ " \ r \ n "
+ " <svg \ r \ n "
+ " width= \" 38.443188mm \" \ r \ n "
+ " height= \" 38.443161mm \" \ r \ n "
+ " viewBox= \" 0 0 38.443188 38.443161 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " id= \" svg5 \" \ r \ n "
+ " inkscape:version= \" 1.1.1 (3bf5ae0d25, 2021-09-20) \" \ r \ n "
+ " sodipodi:docname= \" NoteA.svg \" \ r \ n "
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" > \ r \ n "
+ " <sodipodi:namedview \ r \ n "
+ " id= \" namedview7 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " showguides= \" true \" \ r \ n "
+ " inkscape:guide-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox-edge-midpoints= \" true \" \ r \ n "
+ " inkscape:bbox-paths= \" true \" \ r \ n "
+ " inkscape:snap-nodes= \" false \" \ r \ n "
+ " inkscape:snap-bbox-midpoints= \" true \" \ r \ n "
+ " inkscape:snap-global= \" false \" \ r \ n "
+ " fit-margin-top= \" 0 \" \ r \ n "
+ " fit-margin-left= \" 0 \" \ r \ n "
+ " fit-margin-right= \" 0 \" \ r \ n "
+ " fit-margin-bottom= \" 0 \" \ r \ n "
+ " inkscape:zoom= \" 4.3901061 \" \ r \ n "
+ " inkscape:cx= \" 61.729716 \" \ r \ n "
+ " inkscape:cy= \" 85.533241 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:current-layer= \" layer1 \" > \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 1,0 \" \ r \ n "
+ " id= \" guide12970 \" /> \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 0,-1 \" \ r \ n "
+ " id= \" guide12972 \" /> \ r \ n "
+ " </sodipodi:namedview> \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" /> \ r \ n "
+ " <g \ r \ n "
+ " inkscape:label= \" Calque 1 \" \ r \ n "
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " id= \" layer1 \" \ r \ n "
+ " transform= \" translate(-19.656191,-12.181169) \" > \ r \ n "
+ " <g \ r \ n "
+ " id= \" g17608 \" \ r \ n "
+ " transform= \" matrix(1.1948043,0,0,1.1948043,-3.82911,-2.3729436) \" \ r \ n "
+ " style= \" stroke-width:0.836957 \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path12996 \" \ r \ n "
+ " style= \" font-variation-settings:normal;opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.1633;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1 \" \ r \ n "
+ " inkscape:transform-center-x= \" 0.041927404 \" \ r \ n "
+ " inkscape:transform-center-y= \" -13.470202 \" \ r \ n "
+ " d= \" m 134.9043,46.039062 -5.68946,9.892579 -0.79296,1.378906 -1.10352,-1.103516 -8.07422,-8.066406 -2.94922,11.025391 -0.42383,1.583984 -1.39453,-0.804688 -9.88476,-5.701171 0.004,11.412109 v 1.640625 l -1.55273,-0.416016 -11.025392,-2.949218 2.958984,11.021484 0.425782,1.583984 h -1.611328 l -11.41211,0.0059 5.710938,9.880859 0.820312,1.419922 -1.554687,0.416016 -11.021485,2.958984 8.072266,8.066406 1.160156,1.158204 -1.394531,0.80664 -9.880859,5.70898 9.886718,5.70313 1.419922,0.81836 -1.136718,1.13867 -8.066407,8.07422 11.023438,2.94922 1.585937,0.42383 -0.804687,1.39453 -5.703125,9.88476 11.412109,-0.004 h 1.640625 l -0.416016,1.55273 -2.949218,11.02539 11.021486,-2.95898 1.58594,-0.42578 v 1.61132 l 0.004,11.41211 9.88086,-5.71093 1.41992,-0.82032 0.41797,1.55469 2.95703,11.02149 8.06641,-8.07227 1.16016,-1.16016 0.80468,1.39453 5.70899,9.88086 5.70312,-9.88671 0.82032,-1.42188 1.13867,1.13867 8.07226,8.06641 2.94922,-11.02344 0.42383,-1.58594 1.39453,0.80469 9.88477,5.70313 -0.004,-11.41211 v -1.64063 l 1.55469,0.41602 11.02344,2.94922 -2.95704,-11.02149 -0.42578,-1.58594 h 1.60938 l 11.41211,-0.004 -5.70899,-9.88086 -0.82031,-1.41992 1.55273,-0.41797 11.02344,-2.95703 -8.07422,-8.06641 -1.16015,-1.16016 1.39453,-0.80468 9.88086,-5.70899 -9.88477,-5.70312 -1.42187,-0.82032 1.13867,-1.138667 8.06641,-8.072265 -11.0254,-2.949219 -1.58398,-0.423828 0.80469,-1.394532 5.70117,-9.884765 -11.41211,0.0039 h -1.64063 l 0.41602,-1.554688 2.94922,-11.023437 -11.02148,2.957031 -1.58399,0.425782 v -1.609376 l -0.006,-11.412109 -9.88086,5.708985 -1.41992,0.820312 -0.41602,-1.552734 -2.95898,-11.023438 -8.06641,8.074219 -1.1875,1.189453 a 49.268015,49.860416 0 0 0 -0.01,-0.002 l -0.82813,-1.427735 z \" \ r \ n "
+ " transform= \" scale(0.26458333) \" /> \ r \ n "
+ " <ellipse \ r \ n "
+ " style= \" fill:#ffffff;stroke:#ff0000;stroke-width:0.847001;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" ellipse13122 \" \ r \ n "
+ " cx= \" 35.702724 \" \ r \ n "
+ " cy= \" 28.247471 \" \ r \ n "
+ " rx= \" 11.494 \" \ r \ n "
+ " ry= \" 11.632896 \" /> \ r \ n "
+ " <g \ r \ n "
+ " id= \" g12968 \" \ r \ n "
+ " transform= \" translate(1.0501346,-0.42227552) \" \ r \ n "
+ " style= \" stroke-width:0.836957 \" > \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.539315,34.822811 q 0.01714,0.09353 0.08572,0.09353 l 0.04286,-0.09353 v -0.09353 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11809 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 40.739741,34.588973 v 0.140301 h 0.04286 q 0.08572,0 0.08572,-0.09353 v -0.04677 z \" \ r \ n "
+ " id= \" path11807 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.753609,34.542203 v 0.04677 h 0.04286 q 0.08572,0 0.08572,-0.09353 v -0.04677 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11805 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 27.596661,34.484573 0.128577,0.280601 v 0.467668 l -0.214294,0.04677 h -0.128577 q -0.08572,0 -0.08572,-0.09353 0.205723,-0.60797 0.300012,-0.701503 z \" \ r \ n "
+ " id= \" path11803 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 29.682135,34.261602 q 0.04286,0 0.04286,0.04677 0.171436,-0.07482 0.171436,-0.140301 l -0.08572,-0.04677 q -0.06,0 -0.128577,0.1403 z \" \ r \ n "
+ " id= \" path11801 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 29.167828,33.840701 v 0.04677 q 0.06857,0 0.171436,-0.187067 v -0.04677 q -0.06857,0 -0.171436,0.187067 z \" \ r \ n "
+ " id= \" path11799 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.539315,33.279498 v 0.04677 q 0.128577,0 0.128577,0.09353 l -0.04286,0.233834 0.08572,0.04677 q 0,-0.280601 0.04286,-0.280601 -0.08572,-0.149654 -0.08572,-0.233834 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11797 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 31.010763,33.232728 h 0.128576 v -0.09353 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11795 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 28.782098,33.139198 v 0.04677 q 0.01714,0.09353 0.08572,0.09353 h 0.171437 q 0,-0.06547 -0.128577,-0.140299 z \" \ r \ n "
+ " id= \" path11793 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 31.310776,33.092428 v 0.09353 h 0.342871 q 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11791 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.410738,32.250626 -0.04286,0.467668 v 0.04677 l 0.08572,0.140301 v 0.04677 q -0.06857,0.149654 -0.514307,0.420902 h -0.171435 q -0.154293,0 -0.385731,0.04677 -0.137148,-0.09353 -0.257154,-0.09353 0,0.06547 0.257154,0.233834 0.04286,0 0.342872,-0.09353 l 0.214294,0.04677 q 0.420018,-0.19642 0.600026,-0.467668 -0.04286,-0.102883 -0.08572,-0.420901 0.04286,-0.187068 0.04286,-0.327368 z \" \ r \ n "
+ " id= \" path11789 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 41.339766,31.829724 0.04286,0.09353 -0.08572,0.04677 h -0.04286 v -0.04677 q 0.01715,-0.09353 0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11787 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 38.039628,32.344159 q 0,0.121594 0.685743,0.514435 h 0.08572 l 0.08572,-0.04677 v 0.09353 q 0,0.04677 -0.04286,0.04677 0.06857,0.187068 0.128577,0.187068 0.09428,0 0.428589,-0.187068 l 0.300012,0.04677 q 0.257154,-0.04677 0.471449,-0.187067 0.291441,0.140299 0.471448,0.140299 h 0.171436 q 0.04286,0 0.04286,-0.04677 0.04286,0 0.04286,0.04677 l 0.514307,-0.04677 h 0.128577 q 0.257153,0.486375 0.257153,0.88857 0.04286,0 0.04286,-0.04677 0.171436,0 0.685744,1.91744 l -0.08572,0.04677 q -0.291441,0 -0.514307,-0.04677 -0.222866,0.04677 -0.514307,0.04677 -0.06857,-0.364781 -0.171436,-0.561202 L 41.76836,34.16806 41.81122,33.840693 H 41.7255 q -0.06,0 -0.214296,0.607969 -0.342871,0.439607 -0.342871,0.607968 v 0.09353 q 0.04286,0.261894 0.04286,0.467669 l -0.300013,0.09353 h -0.557167 l -0.171435,-0.140301 q -0.154293,0.140301 -0.300013,0.140301 h -0.257153 q -0.205724,0 -0.42859,-0.04677 -0.162864,0.04677 -0.38573,0.04677 h -0.171436 q -0.04286,0 -0.04286,-0.04677 l -0.08572,0.04677 h -0.514307 q -0.120005,0 -0.642884,-2.057741 H 37.05387 q -0.08572,0 -0.08572,-0.09353 v -0.04677 q 0.342872,0 0.342872,-0.327368 l -0.04286,-0.09353 q 0.205723,-0.748269 0.471448,-0.748269 z \" \ r \ n "
+ " id= \" path11785 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.196568,31.782957 q 0.04286,0.243188 0.04286,0.280601 0,0.215128 -0.128576,0.654736 0.214294,-0.205774 0.214294,-0.514436 -0.04286,-0.336721 -0.04286,-0.374134 0.214294,-0.121594 0.214294,-0.187067 v -0.04677 q -0.231438,0 -0.300013,0.187067 z \" \ r \ n "
+ " id= \" path11783 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.753609,31.642657 h 0.128577 v -0.09353 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11781 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.196443,31.362056 -0.04286,0.187068 q 0.08572,0.654734 0.171435,0.654734 h 0.04286 v -0.04677 q -0.137149,-0.654736 -0.171436,-0.654736 l 0.04286,-0.09353 v -0.04677 z \" \ r \ n "
+ " id= \" path11779 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 38.168205,31.315286 v 0.140301 h 0.08572 v -0.1403 z \" \ r \ n "
+ " id= \" path11777 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.410863,31.268516 v 0.140301 q 0.01715,0.09353 0.08572,0.09353 v -0.1403 q 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11775 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.625032,31.128216 v 0.187067 h 0.128577 q 0.08572,0 0.08572,-0.09353 l -0.128577,-0.09353 z \" \ r \ n "
+ " id= \" path11773 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 31.996518,31.174986 q -0.265725,-0.09353 -0.342871,-0.09353 -0.128577,0.04677 -0.128577,0.09353 -0.342871,-0.09353 -0.471448,-0.187067 h -0.04286 l 0.04286,0.09353 v 0.04677 l -0.08572,0.140301 v 0.04677 l 0.04286,0.09353 0.214294,-0.140301 q 0.780033,-0.04677 0.985756,-0.04677 0,-0.08418 0.428589,-0.187068 v -0.04677 q 0,-0.09353 -0.08572,-0.09353 h -0.04286 q -0.162864,0.16836 -0.514307,0.2806 z \" \ r \ n "
+ " id= \" path11771 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.753609,30.800852 -0.04286,0.233834 q 0.06,0 0.128577,-0.1403 v -0.09353 z \" \ r \ n "
+ " id= \" path11769 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 38.896806,30.847622 0.08572,0.04677 q 0.08572,0 0.08572,-0.09353 v -0.04677 h -0.08572 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11767 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.410738,30.754092 v 0.09353 h 0.128577 q 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11765 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 29.5107,30.800862 v 0.09353 h 0.08572 q 0,-0.102883 0.04286,-0.187068 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11763 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.282287,30.941162 0.128576,0.09353 q 0,-0.280601 0.214295,-0.280601 v -0.09353 h -0.04286 q -0.257154,0.102882 -0.300012,0.2806 z \" \ r \ n "
+ " id= \" path11761 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 39.925422,30.707328 q 0.01714,0.09353 0.08572,0.09353 h 0.04286 V 30.61379 h -0.04286 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11759 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.753735,30.567028 h 0.257153 q 0.08572,0 0.08572,-0.09353 h -0.257154 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11757 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 40.011139,30.426727 v 0.09353 h 0.128577 v -0.09353 z \" \ r \ n "
+ " id= \" path11755 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.282161,30.426727 v 0.140301 h 0.04286 q 0.08572,-0.04677 0.128577,-0.04677 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11753 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 39.711126,30.379957 v 0.04677 h 0.08572 q 0.08572,0 0.08572,-0.09353 v -0.04677 h -0.08572 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11751 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 31.953659,30.05259 -0.257153,0.561201 h 0.128577 q 0,-0.09353 0.171435,-0.327368 V 30.05259 Z \" \ r \ n "
+ " id= \" path11749 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 39.15396,30.00582 -0.04286,0.09353 h 0.128576 q 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11747 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 31.867941,29.678452 v 0.04677 q 0.04286,0.09353 0.04286,0.1403 h 0.04286 V 29.67845 Z \" \ r \ n "
+ " id= \" path11745 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 39.711126,29.304317 v 0.09353 q 0.06857,0 0.514307,0.327368 v -0.04677 q 0,-0.03742 -0.428588,-0.374135 z \" \ r \ n "
+ " id= \" path11743 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 38.896806,29.257547 v 0.04677 l 0.214296,0.04677 h 0.08572 q 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11741 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.453722,28.088376 v 0.09353 h 0.04286 q 0.08572,0 0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11739 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 32.896556,28.275443 h 0.04286 q 0.128576,0 0.257153,-0.280601 h -0.04286 q -0.06,0 -0.257153,0.280601 z \" \ r \ n "
+ " id= \" path11737 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 39.496832,27.901309 -0.04286,0.09353 0.08572,0.04677 h 0.171435 q 0,-0.08418 -0.214294,-0.140301 z \" \ r \ n "
+ " id= \" path11735 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.368004,27.714241 v 0.04677 h 0.08572 V 27.62071 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11733 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.410864,27.012739 0.04286,0.233834 h 0.08572 v -0.233834 z \" \ r \ n "
+ " id= \" path11731 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 32.167955,26.919209 -0.08572,0.1403 q 0.01714,0.09353 0.08572,0.09353 h 0.04286 q 0.08572,0 0.08572,-0.09353 v -0.09353 q -0.04286,0 -0.128577,-0.04677 z \" \ r \ n "
+ " id= \" path11729 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.753736,26.825679 v 0.04677 h 0.128576 q 0.08572,0 0.08572,-0.09353 v -0.04677 h -0.128577 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11727 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 36.925297,26.638611 -0.04286,0.09353 0.08572,0.04677 0.04286,-0.09353 z \" \ r \ n "
+ " id= \" path11725 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 32.76798,26.591841 q 0.05144,0.130946 0.428589,0.327367 h 0.04286 v -0.04677 q -0.05143,0 -0.428589,-0.2806 z \" \ r \ n "
+ " id= \" path11723 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 35.682387,26.45154 v 0.04677 h 0.08572 q 0.08572,0 0.08572,-0.09353 v -0.04677 h -0.08572 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11721 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 37.439604,26.40477 v 0.04677 q 0.08572,0 0.08572,-0.09353 v -0.04677 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11719 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 32.510826,26.26447 v 0.187067 h 0.08572 v -0.09353 q 0,-0.09353 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11717 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 36.025259,26.545071 v 0.04677 h 0.04286 q 1.457204,-0.280602 1.457204,-0.467669 h -0.04286 q -0.780032,0.205774 -1.457203,0.420901 z \" \ r \ n "
+ " id= \" path11715 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 39.411114,26.030636 q 0.102861,0 0.471448,1.403005 l -0.04286,0.09353 q 0.257154,0.355428 0.685743,1.77714 0.128577,0.383487 0.128577,0.420901 -0.08572,0.09353 -0.342871,0.09353 0,0.09353 0.428589,0.1403 0.342872,0.991457 0.557166,1.730372 -0.308584,0.327368 -0.514307,0.327368 -0.188579,0 -0.81432,-0.187067 0,0.06548 -0.257154,0.187067 l -0.514307,-0.04677 q -0.06857,0.187067 -0.300013,0.187067 h -0.04286 q -0.488592,-0.458315 -0.557166,-0.467669 -0.09428,0 -0.171436,0.04677 -0.171436,-0.09353 -0.257154,-0.09353 v -0.04677 l 0.171436,-0.187067 -0.08572,-0.140301 q 0.128577,-0.935336 0.857179,-1.91744 l -0.04286,-0.327368 v -0.327368 q -0.171435,0 -0.171435,-0.467668 0.04286,-0.177713 0.257154,-0.467668 v -0.140301 q -0.642884,-0.327367 -0.642884,-0.514435 -0.04286,-0.177714 -0.04286,-0.420901 0.06857,0 0.342871,-0.467669 0.505736,0 0.900037,-0.187067 z \" \ r \ n "
+ " id= \" path11713 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 36.025259,26.077406 h 0.128576 q 0.08572,0 0.08572,-0.09353 v -0.04677 h -0.08572 q -0.06001,0 -0.128576,0.140301 z \" \ r \ n "
+ " id= \" path11711 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 31.696506,25.843571 q 0,0.07482 0.300012,0.187067 h 0.128577 v -0.04677 z \" \ r \ n "
+ " id= \" path11709 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 30.839327,25.843571 v 0.04677 l 0.214295,0.04677 h 0.04286 v -0.09353 h -0.08572 q -0.04286,0 -0.04286,0.04677 l -0.08572,-0.04677 z \" \ r \ n "
+ " id= \" path11707 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 32.939415,25.282369 q 0.04286,0.09353 0.04286,0.140301 h 0.128577 v -0.140301 z \" \ r \ n "
+ " id= \" path11705 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 36.410989,23.972898 v 0.04677 l 0.214294,-0.04677 v -0.09353 h -0.128577 q -0.08572,0.01871 -0.08572,0.09353 z \" \ r \ n "
+ " id= \" path11703 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 35.982399,23.551996 0.171436,0.04677 q 0.231438,-0.04677 0.385731,-0.04677 0.07715,0.261895 0.557165,0.420902 0,0.25254 0.300013,1.215938 l -0.04286,0.327368 q 0.08572,0 0.257153,0.607968 l 0.300013,0.374135 -0.08572,0.374134 0.04286,0.327368 q -0.04286,0.252541 -0.04286,0.374135 l 0.642884,0.327368 q -0.300013,0.346074 -0.300013,0.561201 0,0.467669 -0.257154,0.467669 0.01714,0.09353 0.08572,0.09353 h 0.04286 l 0.128577,-0.09353 h 0.04286 q 0.120005,0 0.171435,0.467668 0,0.1403 -0.600025,1.169171 -0.111432,0.514435 -0.214294,0.514435 h -0.08572 q -0.728602,-0.327368 -0.857179,-0.327368 -0.09428,0 -0.171436,0.04677 -0.222866,-0.09353 -0.342871,-0.09353 l -0.81432,0.2806 -0.171436,0.04677 q -0.497163,-0.19642 -1.071473,-0.935337 0.01714,-0.09353 0.08572,-0.09353 h 2.100088 q 0,-0.177714 -0.557167,-2.198042 -0.128576,-0.430254 -0.128576,-0.514434 0.04286,0 0.04286,-0.04677 -0.145721,-0.140301 -0.728602,-2.525409 l -0.08572,-0.04677 q -0.06,0 -0.600025,1.964206 h 0.04286 q -0.497163,2.048387 -0.685742,2.338342 0.04286,0.09353 0.04286,0.1403 -0.06,0.327368 -0.171436,0.327368 h -0.171436 q -0.180007,0 -0.342871,0.04677 -0.557166,-0.02806 -0.557166,-0.374135 h -0.04286 l -0.128577,0.09353 q 0,0.177714 0.342872,0.467669 h 0.342871 l 0.514307,-0.04677 q 0.04286,0.09353 0.04286,0.140301 l -0.04286,0.233834 h 0.171436 q 0.231439,0 0.300012,0.187067 v 0.09353 l -0.171435,0.04677 v 0.1403 h 0.04286 l 0.171436,-0.1403 h 0.04286 q 0,0.30866 1.028614,0.88857 0,0.04677 0.08572,0.04677 l 0.900038,-0.280601 h 0.128577 q 0.154293,0 0.38573,0.04677 0.171436,-0.09353 0.257154,-0.09353 0.522879,0.233834 0.857179,0.233834 v 0.233835 q 0,0.04677 0.04286,0.04677 0,0.130947 -0.728602,0.420901 -0.08572,0 -0.42859,-0.420901 v 0.09353 q 0.145721,0.374134 0.385731,0.374134 0,0.879217 -0.342872,1.02887 -0.137148,0 -0.342871,0.327368 h -1.328627 l -0.128577,-0.09353 q -0.137148,0.09353 -0.257153,0.09353 h -1.371487 l -0.128576,-0.09353 -0.214295,0.04677 -0.04286,-0.09353 q -0.171435,0 -0.685742,0.2806 v -0.04677 q -0.342872,0.04677 -0.342872,0.1403 v 0.09353 q 0.171436,0.168361 0.171436,0.233835 h 0.04286 v -0.280601 q 0.360014,-0.09353 0.514307,-0.09353 -0.154293,0.88857 -0.300013,0.88857 v 0.233834 q -0.111433,0.748269 -0.257153,0.748269 h -0.985751 q -0.300012,0 -0.300012,-0.09353 -0.137149,0.09353 -0.257154,0.09353 h -1.62864 q -0.154292,0 -0.38573,-0.04677 -0.06857,0.04677 -0.214295,0.04677 -0.08572,-0.04677 -0.128576,-0.04677 v -0.140301 l 0.04286,-0.327368 q -0.257154,-0.233833 -0.257154,-0.607967 0.197152,-0.88857 0.300013,-0.88857 0.197151,0 0.385731,0.1403 h 0.08572 v -0.09353 q -0.265725,-0.09353 -0.428589,-0.09353 v -0.09353 q 0,-0.271249 0.771461,-2.385109 l 0.214295,0.04677 h 0.08572 q 0.06,0 0.171436,-0.233835 0,-0.09353 -0.08572,-0.09353 h -0.08572 q 0,0.187068 -0.08572,0.187068 h -0.08572 l 0.08572,-0.140301 v -0.04677 q -0.128577,0 -0.128577,-0.09353 0.900037,-2.628296 1.20005,-3.647812 h 0.04286 q 0.600025,0.336721 0.942896,1.403005 -0.08572,0.25254 -0.08572,0.514434 l 0.04286,0.420902 q -0.514307,0.776329 -0.771461,1.075637 0,0.06548 -0.514308,0.187068 -0.342871,0.177714 -0.342871,0.233833 v 0.140301 q 0.01714,0.09353 0.08572,0.09353 l 0.08572,-0.327368 h 0.171436 q 0.04286,0 0.342871,-0.09353 -0.120005,0.280602 -0.300013,0.280602 v 0.09353 h 0.08572 q 0.38573,-0.168361 0.38573,-0.514436 0.325728,-0.233833 0.428589,-0.233833 0.08572,0.243187 0.08572,0.374134 -0.08572,0.01871 -0.08572,0.09353 v 0.09353 h 0.04286 q 0.102862,0 0.128577,-0.420901 -0.08572,0 -0.08572,-0.09353 v -0.04677 q 0,-0.364782 0.557166,-0.935337 0.111433,0.187068 0.642884,0.233834 0.08572,-0.04677 0.128577,-0.04677 v -0.140301 q -0.04286,0 -0.128577,-0.04677 -0.231438,0.04677 -0.342871,0.04677 -0.42859,0 -0.42859,-0.607968 0.08572,-0.308662 0.08572,-0.420903 0,-0.439607 -1.071474,-1.636838 v -0.04677 q 0.754318,-2.441229 0.942897,-2.759243 h 0.04286 q 0.214295,0 0.214295,0.09353 0.02571,0 0.171435,-0.04677 0.720031,0.04677 1.114333,0.04677 0.762889,0.607968 0.942897,0.607968 0,-0.08418 0.428589,-0.233834 0.282869,0.09353 0.38573,0.09353 0.
+ " id= \" path11701 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 36.668143,21.213655 h 0.128576 q 0.06,0 0.128577,-0.140301 v -0.09353 h -0.04286 q -0.06,0 -0.214294,0.233834 z \" \ r \ n "
+ " id= \" path11699 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 32.682261,20.231552 q 0,0.140299 -0.171436,0.327368 l 0.08572,0.04677 0.171436,-0.327368 z \" \ r \ n "
+ " id= \" path11697 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 35.382374,20.231552 v 0.09353 h 0.257153 v -0.140301 h -0.04286 z \" \ r \ n "
+ " id= \" path11695 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.067991,20.091251 v 0.04677 h 0.08572 q 0.171435,-0.140301 0.514307,-0.187068 v -0.04677 h -0.171436 q -0.07715,0 -0.428589,0.187067 z \" \ r \ n "
+ " id= \" path11693 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke-width:0.383701 \" \ r \ n "
+ " d= \" m 33.710875,19.857417 v 0.04677 l 0.214296,0.04677 h 0.08572 v -0.09353 z \" \ r \ n "
+ " id= \" path11691 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 36.196694,19.717117 q 0.171436,0.06548 0.171436,0.1403 v 0.1403 q 0,0.06547 -0.128577,0.140301 h -0.08572 q 0,-0.140301 -0.128577,-0.233834 0.03429,-0.140301 0.171435,-0.187067 z \" \ r \ n "
+ " id= \" path11689 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 36.110974,19.483282 h 0.04286 q 0.111433,0 0.342871,0.04677 0.171437,-0.04677 0.300013,-0.04677 0.05144,0.233835 0.128577,0.233835 0.04286,-0.08418 0.04286,-0.187068 h 0.257154 q 0.171436,0 0.214295,0.561202 -0.04286,0 -0.04286,0.04677 l -0.08572,-0.04677 -0.257153,0.04677 -0.214295,-0.187068 h -0.08572 q 0,0.252542 0.342871,0.327368 0.231439,-0.04677 0.385731,-0.04677 0.38573,0.86051 0.38573,1.075637 -0.06,0 -0.214294,0.233834 v 0.374134 q 0,0.271248 -0.300013,0.795037 h 0.08572 q 0.300012,-0.551849 0.300012,-1.122405 0.06,-0.09353 0.214295,-0.09353 1.157192,3.404625 1.328627,4.162247 v 0.04677 q -0.471448,0.2806 -1.114332,0.2806 -0.514307,-0.813742 -0.514307,-1.590072 -0.171436,-0.318015 -0.214295,-0.607968 0.04286,-0.08418 0.04286,-0.187068 0,-0.11224 -0.471448,-0.327367 0,-0.06548 -0.257154,-0.280602 -0.197151,0 -0.38573,0.140301 h -0.04286 q -0.342871,0 -0.342871,-0.935337 -0.04286,-0.07482 -0.04286,-0.280601 0.05143,0 0.342871,-0.374134 v -0.09353 q 0,-0.05613 -0.257153,-0.607969 v -0.04677 q 0.180008,-0.505082 0.514307,-0.795037 0.07715,0.04677 0.171436,0.04677 v -0.1403 q -0.300013,0 -0.300013,-0.280602 h -0.214294 q -0.08572,0 -0.08572,-0.09353 z \" \ r \ n "
+ " id= \" path11687 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-size:18.3379px;line-height:1.25;font-family:Crackvetica;-inkscape-font-specification:Crackvetica;fill:#1ae416;stroke:#000000;stroke-width:0.0485435;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1 \" \ r \ n "
+ " d= \" m 32.596541,19.483282 h 1.457204 l 0.300012,0.09353 q 0.28287,-0.09353 0.385731,-0.09353 h 0.257153 q 0.04286,0 0.04286,0.04677 l 0.08572,-0.04677 h 0.04286 l 0.171436,0.233835 0.300012,-0.09353 q 0.317157,0.177714 0.342872,0.280602 v 0.467667 q 0,0.04677 0.04286,0.04677 0,0.04677 -0.214296,0.327368 v 0.187067 q 0,0.11224 0.214296,0.420901 0,0.261894 -0.342873,0.467669 v 0.1403 q 0,0.308661 0.171437,1.169171 -0.171437,0 -0.642884,0.420901 -0.102862,0 -0.300013,0.09353 l -0.08572,-0.04677 q -0.300013,0.187068 -0.428589,0.187068 l -0.214295,-0.04677 q 0,0.06547 -0.471449,0.187068 -0.05143,0 -0.857178,-0.514435 -0.07715,-0.04677 -0.171436,-0.04677 h -0.600025 q -0.102861,0 -0.38573,-0.09353 -0.171436,0.03742 -0.171436,0.09353 -0.197151,-0.09353 -0.214294,-0.187068 0.728601,-2.394461 0.900037,-2.572175 l -0.04286,-0.09353 q 0.188579,-0.617321 0.428589,-1.02887 z \" \ r \ n "
+ " id= \" path11248 \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </svg> \ r \ n " ;
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG de la note B
* @return
* /
2022-04-25 13:25:20 +02:00
public static String NoteB ( ) {
return " <?xml version= \" 1.0 \" encoding= \" UTF-8 \" standalone= \" no \" ?> \ r \ n "
+ " <!-- Created with Inkscape (http://www.inkscape.org/) --> \ r \ n "
+ " \ r \ n "
+ " <svg \ r \ n "
+ " width= \" 38.443188mm \" \ r \ n "
+ " height= \" 38.443161mm \" \ r \ n "
+ " viewBox= \" 0 0 38.443188 38.443161 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " id= \" svg5 \" \ r \ n "
+ " inkscape:version= \" 1.1.1 (3bf5ae0d25, 2021-09-20) \" \ r \ n "
+ " sodipodi:docname= \" NoteB.svg \" \ r \ n "
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" > \ r \ n "
+ " <sodipodi:namedview \ r \ n "
+ " id= \" namedview7 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " showguides= \" true \" \ r \ n "
+ " inkscape:guide-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox-edge-midpoints= \" true \" \ r \ n "
+ " inkscape:bbox-paths= \" true \" \ r \ n "
+ " inkscape:snap-nodes= \" false \" \ r \ n "
+ " inkscape:snap-bbox-midpoints= \" true \" \ r \ n "
+ " inkscape:snap-global= \" false \" \ r \ n "
+ " fit-margin-top= \" 0 \" \ r \ n "
+ " fit-margin-left= \" 0 \" \ r \ n "
+ " fit-margin-right= \" 0 \" \ r \ n "
+ " fit-margin-bottom= \" 0 \" \ r \ n "
+ " inkscape:zoom= \" 4.3901061 \" \ r \ n "
+ " inkscape:cx= \" 63.096425 \" \ r \ n "
+ " inkscape:cy= \" 85.533241 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:current-layer= \" layer1 \" > \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 1,0 \" \ r \ n "
+ " id= \" guide12970 \" /> \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 0,-1 \" \ r \ n "
+ " id= \" guide12972 \" /> \ r \ n "
+ " </sodipodi:namedview> \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" /> \ r \ n "
+ " <g \ r \ n "
+ " inkscape:label= \" Calque 1 \" \ r \ n "
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " id= \" layer1 \" \ r \ n "
+ " transform= \" translate(-19.656191,-12.181169) \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path12996 \" \ r \ n "
+ " style= \" font-variation-settings:normal;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000 \" \ r \ n "
+ " inkscape:transform-center-x= \" 0.041927404 \" \ r \ n "
+ " inkscape:transform-center-y= \" -13.470202 \" \ r \ n "
+ " d= \" m 38.817552,12.181169 -1.798582,3.127294 -0.250675,0.435907 -0.34885,-0.348849 -2.552465,-2.549995 -0.932324,3.485405 -0.133983,0.500737 -0.440846,-0.254382 -3.124823,-1.802284 0.0013,3.607656 v 0.518643 l -0.490858,-0.131513 -3.485405,-0.932322 0.93541,3.48417 0.1346,0.500737 H 25.82067 l -3.607657,0.0019 1.805372,3.12359 0.259321,0.448873 -0.491476,0.131513 -3.48417,0.93541 2.551848,2.549995 0.366754,0.366137 -0.440846,0.255 -3.12359,1.804753 3.125442,1.802903 0.448873,0.258705 -0.359345,0.359962 -2.549995,2.552465 3.484787,0.932323 0.501355,0.133984 -0.254382,0.440846 -1.802902,3.124823 3.607656,-0.0013 h 0.518644 l -0.131514,0.490857 -0.932322,3.485405 3.48417,-0.935408 0.501356,-0.1346 v 0.509379 l 0.0013,3.607657 3.12359,-1.80537 0.448872,-0.259324 0.132131,0.491477 0.934792,3.484172 2.549996,-2.551849 0.366756,-0.366756 0.25438,0.440846 1.804756,3.12359 1.802901,-3.125439 0.259324,-0.449492 0.359962,0.359962 2.551846,2.549996 0.932323,-3.484788 0.133983,-0.501356 0.440846,0.254383 3.124826,1.802904 -0.0013,-3.607657 V 43.9042 l 0.491477,0.131514 3.484788,0.932323 -0.934795,-3.484172 -0.1346,-0.501355 h 0.508766 l 3.607656,-0.0013 -1.804756,-3.12359 -0.259321,-0.448872 0.490858,-0.132131 3.484788,-0.934792 -2.552465,-2.549997 -0.366753,-0.366755 0.440846,-0.25438 3.12359,-1.804756 -3.124826,-1.802901 -0.449489,-0.259324 0.359962,-0.359961 2.549997,-2.551847 -3.485408,-0.932323 -0.500736,-0.133983 0.254382,-0.440847 1.802285,-3.124824 -3.607657,0.0012 h -0.518645 l 0.131515,-0.491476 0.932323,-3.484788 -3.484169,0.934793 -0.500739,0.1346 V 18.34556 l -0.0019,-3.607657 -3.12359,1.804755 -0.448873,0.259321 -0.131514,-0.490858 -0.935408,-3.484788 -2.549997,2.552465 -0.375398,0.376016 a 15.574866,15.762139 0 0 0 -0.0032,-6.32e-4 l -0.261793,-0.451343 z \" /> \ r \ n "
+ " <ellipse \ r \ n "
+ " style= \" fill:#ffffff;stroke:#ff0000;stroke-width:1.012;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" ellipse13122 \" \ r \ n "
+ " cx= \" 38.828659 \" \ r \ n "
+ " cy= \" 31.377256 \" \ r \ n "
+ " rx= \" 13.733081 \" \ r \ n "
+ " ry= \" 13.899035 \" /> \ r \ n "
+ " <g \ r \ n "
+ " aria-label= \" B \" \ r \ n "
+ " transform= \" scale(0.94145664,1.0621838) \" \ r \ n "
+ " id= \" text18235 \" \ r \ n "
+ " style= \" font-size:21.2861px;line-height:1.25;fill:#008000;stroke:#ff0000;stroke-width:0.1 \" > \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 37.058633,37.855426 h 0.311808 v 0.05197 q -0.08315,0.259841 -0.311808,0.259841 L 37.006663,38.0633 q 0.05197,-0.09354 0.05197,-0.207872 z \" \ r \ n "
+ " id= \" path22111 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.720072,37.699522 v 0.155904 h 0.207872 V 37.69952 Z \" \ r \ n "
+ " id= \" path22109 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 41.995595,37.647552 v 0.05197 q 0.02079,0.103936 0.103936,0.103936 0.103936,0 0.103936,-0.103936 v -0.05197 z \" \ r \ n "
+ " id= \" path22107 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 40.54049,37.543616 v 0.155904 h 0.05197 q 0.103936,0 0.103936,-0.103936 l -0.103936,-0.05197 z \" \ r \ n "
+ " id= \" path22105 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.373516,37.283776 v 0.05197 h 0.311808 v -0.05197 z \" \ r \ n "
+ " id= \" path22103 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 39.397194,36.92 q 0.415744,0.384563 0.415744,1.091328 h 0.103936 v 0.155905 h -2.338561 q -0.103936,0 -0.103936,-0.103937 v -0.05197 q 0,-0.114329 0.25984,-0.155904 l 0.467712,0.05197 q 0.779521,-0.322201 0.779521,-0.831488 0.176691,0 0.415744,-0.155904 z \" \ r \ n "
+ " id= \" path22101 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 46.30894,36.971976 v 0.05197 h 0.103936 L 46.464844,36.92 q -0.103936,0.05197 -0.155904,0.05197 z \" \ r \ n "
+ " id= \" path22099 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.841228,36.86804 q 0.05197,0.08315 0.05197,0.25984 H 46.0491 l 0.05197,-0.25984 -0.103936,-0.05197 h -0.05197 z \" \ r \ n "
+ " id= \" path22097 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 40.124746,36.712136 v 0.155904 h 0.103936 v -0.155904 z \" \ r \ n "
+ " id= \" path22095 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 39.137354,36.660166 h 0.155904 l 0.05197,0.25984 q -0.311808,-0.05197 -0.311808,-0.155904 0.02079,-0.103936 0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22093 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 44.542028,36.088518 v 0.103936 h 0.155904 q 0,-0.103936 -0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22091 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 43.190859,36.244422 h 0.103936 q 0.103936,0 0.103936,-0.103936 v -0.05197 h -0.05197 q -0.07276,0 -0.155904,0.155904 z \" \ r \ n "
+ " id= \" path22089 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.113676,36.03655 v 0.103936 q 0.25984,-0.135117 0.25984,-0.207872 V 35.88064 H 45.26958 q -0.07276,0 -0.155904,0.155904 z \" \ r \ n "
+ " id= \" path22087 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 42.307403,35.77671 v 0.103936 h 0.311808 v -0.05197 z \" \ r \ n "
+ " id= \" path22085 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 46.56878,35.672774 q 0.05197,0.103936 0.05197,0.155904 h 0.05197 q 0.07276,0 0.155904,-0.155904 V 35.6208 H 46.67272 Z \" \ r \ n "
+ " id= \" path22083 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.737292,35.672774 v 0.103936 h 0.05197 q 0.103936,-0.05197 0.155904,-0.05197 V 35.568836 H 45.84123 q -0.103936,0.02079 -0.103936,0.103936 z \" \ r \ n "
+ " id= \" path22081 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.356296,35.51687 q 0.571648,0.155904 0.883456,0.155904 0.291021,-0.05197 0.415744,-0.05197 0.623617,0.810701 0.623617,0.935424 0,0.25984 -0.103936,0.25984 0,0.135117 0.623616,0.831488 0.05197,0.09354 0.05197,0.207872 V 38.0633 q 0,0.103937 -0.103936,0.103937 h -2.650369 q -0.07276,0 -0.155904,-0.155905 v -0.77952 q 0,-0.270234 0.05197,-0.467712 -0.05197,-0.270234 -0.05197,-0.51968 v -0.51968 q 0,-0.155904 0.415744,-0.207872 z \" \ r \ n "
+ " id= \" path22079 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 35.863368,35.4649 h 0.155904 q 0.207873,0.08315 0.207873,0.363776 h -0.05197 Q 35.75943,35.651984 35.75943,35.568836 35.78022,35.4649 35.863366,35.4649 Z \" \ r \ n "
+ " id= \" path22077 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 42.047563,35.4649 v 0.1559 h 0.05197 q 0.207872,-0.08315 0.207872,-0.155904 l -0.103936,-0.05197 q -0.103936,0.05197 -0.155904,0.05197 z \" \ r \ n "
+ " id= \" path22075 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.348301,35.257027 v 0.05197 h 0.05197 q 0.166297,-0.103936 0.25984,-0.103936 0.103936,0.05197 0.155904,0.05197 v -0.103936 q 0,-0.103936 -0.103936,-0.103936 -0.280628,0 -0.363776,0.207872 z \" \ r \ n "
+ " id= \" path22073 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.036492,34.997187 v 0.155904 q 0.103936,0 0.103936,-0.103936 v -0.05197 z \" \ r \ n "
+ " id= \" path22071 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 48.283725,34.945217 v 0.155904 h 0.103936 v -0.05197 q 0,-0.103936 -0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22069 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.044488,33.749953 q 0.09354,0.09354 0.155904,0.623616 -0.05197,0.270234 -0.05197,0.51968 0.05197,0.22866 0.05197,0.363776 l -0.207872,0.05197 -0.05197,-0.103936 v -1.351168 q 0.02079,-0.103936 0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22067 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 48.439629,32.658625 q 0.07276,0.415744 0.155904,0.415744 -0.311808,0.77952 -0.311808,0.935424 -0.155904,0 -0.155904,0.103936 v 0.05197 l 0.103936,0.155904 v 0.05197 h -0.415744 q -0.11433,0 -0.207872,0.05197 -0.831489,-0.155904 -0.831489,-0.415744 0,-0.748339 0.883457,-0.987392 0.623616,-0.363776 0.77952,-0.363776 z \" \ r \ n "
+ " id= \" path22065 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 49.271117,32.554689 h 0.363776 q 0.103936,0 0.103936,-0.103937 -0.05197,0 -0.05197,-0.05197 -0.415744,0.05197 -0.415744,0.155905 z \" \ r \ n "
+ " id= \" path22063 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 46.932556,31.775168 0.103936,0.05197 h 0.103936 q 0.103937,0 0.103937,-0.103936 v -0.103936 q -0.311809,0.03118 -0.311809,0.155904 z \" \ r \ n "
+ " id= \" path22061 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 49.738829,31.879104 q 0.467713,0.135117 0.467713,1.247233 h -0.05197 l 0.05197,0.103936 v 0.363776 q 0,2.691943 -2.494465,4.105473 -0.717159,0.311808 -0.935425,0.311808 v -0.103936 h -0.103936 l -1.351168,0.519681 -0.103936,-0.05197 q -0.187085,0.103936 -0.415744,0.103936 L 44.7499,38.375105 V 37.95936 q 0,-0.05197 0.467712,-0.311808 l 0.103936,0.05197 0.05197,-0.103936 h -0.155904 q -0.09354,0 -0.467712,0.155904 l -0.05197,-0.103936 v -0.05197 l 0.05197,-0.363776 q -0.22866,0 -0.363777,-0.25984 l -0.623616,0.311808 q -0.05197,0 -0.05197,0.05197 v 0.103936 q 0.311808,0 0.311808,0.207872 0.291021,-0.07276 0.415744,-0.155904 h 0.05197 v 0.311808 q 0,0.05197 0.05197,0.05197 l -0.05197,0.103936 v 0.519681 q -0.436532,0.103936 -1.143297,0.103936 h -0.103936 q -0.270234,0 -0.467712,-0.05197 -0.270234,0.05197 -0.51968,0.05197 H 41.06017 q -0.654797,0 -0.77952,-1.039361 0,-0.09354 -0.727552,-0.675584 0.987392,0 0.987392,-0.77952 0,-0.124723 0.363776,-0.987393 v -0.415744 q 0,-0.07276 0.155904,-0.155904 h 0.415744 q 0.987393,0.800308 0.987393,0.987393 h 0.311808 q 0.228659,0 0.415744,0.207872 1.049754,-0.09354 1.247232,-0.25984 0.103937,0.05197 0.155905,0.05197 v 0.05197 q 0,0.155904 -0.259841,0.155904 v 0.415744 q 0,0.05197 0.05197,0.05197 -0.155904,0.342989 -0.155904,0.467712 v 0.103936 h 0.155904 q 0,-0.311808 0.259841,-0.311808 -0.103936,-0.124723 -0.103936,-0.207872 0.301414,-0.675584 0.987392,-0.675584 0.935424,-0.623617 1.247232,-0.623617 0.25984,-0.155904 0.415744,-0.155904 0.280628,0 0.415745,0.25984 0.155904,-0.05197 0.155904,-0.103936 0.05197,0 0.155904,0.05197 l 0.51968,-0.05197 q 0.09354,0.363776 0.207872,0.363776 v -0.155904 l -0.103936,-0.155904 0.103936,-0.05197 h 0.05197 l 0.103936,0.05197 v -0.05197 q -0.103936,-0.187085 -0.103936,-0.415744 0.124723,0 0.25984,-0.77952 l 0.25984,-0.25984 v -0.05197 q -0.311808,0 -0.311808,-0.415744 0.415744,0 0.571648,-1.091329 z \" \ r \ n "
+ " id= \" path22059 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 35.655496,30.94368 0.103936,0.05197 h 0.103936 q 0.103936,0 0.103936,-0.103936 0,-0.103936 -0.103936,-0.103936 -0.207872,0.07276 -0.207872,0.155904 z \" \ r \ n "
+ " id= \" path22057 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 37.526345,30.268096 -0.623616,-0.05197 h -0.05197 q -0.166298,0.14551 -0.623616,0.207872 v 0.103936 l 0.311808,0.05197 q 0.426137,-0.207872 0.467712,-0.207872 0.332595,0 0.883456,0.51968 0.249447,0 0.51968,0.103936 v -0.05197 q 0,-0.124723 -0.675584,-0.311808 -0.155904,-0.239053 -0.155904,-0.311808 0.103936,-0.166298 0.103936,-0.311808 v -0.05197 h -0.05197 q -0.103936,0 -0.103936,0.311808 z \" \ r \ n "
+ " id= \" path22055 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.400269,29.124799 h 0.05197 q 1.330381,0.467712 1.974784,1.766913 l 0.155904,0.311808 q -0.05197,0 -0.05197,0.05197 L 49.427021,31.20352 Q 48.99049,31.307456 48.491597,31.359424 48.169395,31.20352 48.023885,31.20352 v -0.05197 q 0,-0.176691 0.155904,-0.363776 v -0.207872 q -0.4885,-0.727552 -0.77952,-1.403137 z \" \ r \ n "
+ " id= \" path22053 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 41.891659,27.721663 h 0.05197 v 0.103936 h -0.155904 q 0.02079,-0.103936 0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22051 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 46.516812,27.305919 q 0.280628,0 0.311808,0.987392 0.25984,0.218266 0.311808,0.467712 -0.05197,0.09354 -0.05197,0.207872 v 0.103936 q 0.509287,1.039361 0.831489,1.455105 h 0.05197 v 0.103936 l -0.155904,0.51968 v 0.05197 q 0.654797,0.322202 0.831488,0.675584 l 0.103936,0.05197 V 31.82714 l -0.103936,-0.363776 0.103936,-0.05197 q 0.311808,0.03118 0.311808,0.155904 v 0.103936 q -0.176691,0.446925 -1.195264,0.935425 -0.561255,0.415744 -1.091329,0.623616 l -0.05197,0.103936 v 0.415744 q 0,0.436531 -1.03936,0.727552 -0.37417,0.394957 -1.195264,0.571648 -0.03118,-0.155904 -0.415745,-0.155904 h -0.25984 q -0.25984,0.01039 -0.25984,0.103936 -0.582042,-0.08315 -0.77952,-0.207872 -0.09354,0 -0.311808,0.103936 -0.987393,-0.571648 -0.987393,-0.675584 v -0.05197 l 0.103936,-0.05197 h 0.519681 l 0.51968,0.05197 q 0,-0.103936 0.935424,-0.207872 0.987393,-0.415744 0.987393,-1.143296 V 32.24288 q 0,-0.976998 -1.507073,-1.247232 -1.143296,0 -1.143296,-0.571648 v -0.05197 q 0.06236,-0.11433 1.195264,-0.467712 1.205658,-1.049754 1.351168,-1.507073 0.135117,0 1.091329,-0.935424 0.155904,-0.103936 0.987392,-0.155904 z \" \ r \ n "
+ " id= \" path22049 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.712077,27.305919 v 0.103936 q 0.384563,0.103936 0.51968,0.103936 v -0.103936 h -0.103936 q -0.228659,0 -0.415744,-0.103936 z \" \ r \ n "
+ " id= \" path22047 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 35.655496,27.098047 v 0.05197 l 0.05197,0.25984 q -0.311808,0.592435 -0.311808,0.675584 0.280628,0.571648 0.363776,0.571648 h 0.05197 q -0.25984,-0.509286 -0.25984,-0.571648 0,-0.166298 0.363776,-0.831488 z \" \ r \ n "
+ " id= \" path22045 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.044488,26.73427 q 0.270233,0.457319 0.311808,0.467713 -0.25984,0.696371 -0.25984,0.883456 l 0.155904,0.207872 v 0.155904 q 0,0.05197 -0.05197,0.05197 0.155904,0.25984 0.155904,0.415744 v 0.155904 q 0,0.467712 -0.363776,0.467712 l -0.05197,-0.103936 v -0.51968 q 0,-0.14551 0.103936,-0.311808 -0.103936,-0.488499 -0.103936,-0.77952 v -0.987393 q 0.02079,-0.103936 0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22043 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.824008,26.6823 q 0,0.09354 -0.155904,0.259841 h 0.05197 q 0.08315,0 0.207872,-0.207873 V 26.6823 Z \" \ r \ n "
+ " id= \" path22041 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.945164,26.42246 v 0.05197 q 0.332595,0 0.571648,0.571649 h 0.05197 V 26.890172 Q 46.236185,26.42246 46.101068,26.42246 Z \" \ r \ n "
+ " id= \" path22039 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.296333,25.850812 -0.05197,0.103936 0.103936,0.05197 h 0.05197 v -0.05197 q 0,-0.103936 -0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22037 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.824008,25.175228 q 0.02079,0.103936 0.103936,0.103936 h 0.05197 v -0.103936 z \" \ r \ n "
+ " id= \" path22035 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 34.564168,25.175228 v 0.103936 h 0.103936 q 0.103936,0 0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22033 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.633356,25.487036 0.05197,0.103936 -0.05197,0.311808 q 0.103936,0.363776 0.103936,0.415744 h 0.103936 l -0.103936,-0.727552 q 0.436531,-0.25984 0.623616,-0.25984 0,0.07276 0.155904,0.155904 0.363776,-0.103936 0.571648,-0.103936 0.09354,0 0.259841,0.103936 l 0.05197,-0.103936 v -0.103936 q -0.05197,0 -0.05197,0.05197 l -0.519681,-0.05197 h -0.25984 q -0.05197,0 -0.05197,0.05197 -0.239053,-0.07276 -0.25984,-0.207872 -0.363776,0.135117 -0.623616,0.363776 z \" \ r \ n "
+ " id= \" path22031 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.296333,24.967356 v 0.207872 h 0.05197 q 0.187084,0 0.467712,-0.05197 0.436531,0.103936 0.831488,0.415744 h 0.25984 q 0,-0.239053 0.05197,-0.311808 -0.103936,0 -0.103936,-0.25984 h -0.103936 l 0.05197,0.25984 v 0.05197 q 0,0.103936 -0.155904,0.103936 -0.706765,-0.415744 -0.883456,-0.415744 z \" \ r \ n "
+ " id= \" path22029 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 36.746825,24.707516 v 0.103936 h 0.25984 v -0.103936 z \" \ r \ n "
+ " id= \" path22027 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.52942,24.499644 q 0,0.25984 -0.25984,0.25984 v 0.155904 h 0.155904 q 0.08315,0 0.25984,-0.363776 v -0.05197 z \" \ r \ n "
+ " id= \" path22025 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 44.49006,24.239804 q 0,0.363776 0.363776,0.363776 h 0.25984 v -0.103936 h -0.25984 q -0.03118,0 -0.25984,-0.25984 z \" \ r \ n "
+ " id= \" path22023 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 43.970379,23.824059 v 0.103936 q 0.05197,0 0.155904,0.05197 l 0.05197,-0.103936 q -0.114329,0 -0.207872,-0.05197 z \" \ r \ n "
+ " id= \" path22021 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.373516,23.720123 v 0.05197 q 0,0.07276 0.25984,0.207872 h 0.25984 v 0.05197 l -0.51968,0.259841 v 0.103936 h 0.155904 q 0,-0.11433 0.311808,-0.25984 0.675584,0.135116 0.675584,0.311808 0,0.05197 -0.207872,0.311808 v 0.103936 h 0.05197 q 0.25984,-0.467712 0.51968,-0.623616 -0.04157,0 -0.415744,-0.05197 0,0.05197 -0.05197,0.05197 v -0.05197 l 0.103936,-0.155905 v -0.207872 q -0.374169,0.05197 -0.415744,0.05197 -0.249446,-0.155904 -0.675584,-0.155904 z \" \ r \ n "
+ " id= \" path22019 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 47.192396,23.876027 v 0.05197 h 0.05197 q 0.270233,-0.187084 0.363776,-0.415744 h -0.103936 q -0.09354,0 -0.311809,0.363776 z \" \ r \ n "
+ " id= \" path22017 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 43.398731,23.512251 v 0.103936 h 0.155904 v -0.103936 z \" \ r \ n "
+ " id= \" path22015 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 36.019272,23.408315 v 0.155904 h 0.207873 v -0.103936 h 0.103936 q 0,0.103936 0.05197,0.103936 l 0.467712,-0.155904 v -0.05197 q 0,-0.07276 -0.25984,-0.25984 z \" \ r \ n "
+ " id= \" path22013 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 44.282187,22.628795 -0.05197,0.103936 v 0.05197 h 0.05197 q 0.103936,0 0.103936,-0.103936 z \" \ r \ n "
+ " id= \" path22011 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 36.383049,22.472891 q 0.25984,0.08315 0.25984,0.25984 -0.103936,0.166298 -0.103936,0.311808 h 0.05197 q 0.103936,-0.103936 0.883456,-0.207872 0.05197,0.103936 0.05197,0.155904 l -0.05197,0.25984 q 0.135117,0.01039 0.363776,0.363776 v 0.05197 q 0,0.103936 -0.155904,0.103936 -0.06236,0 -0.571648,-0.207872 v 0.103936 q 0.623616,0.446925 0.623616,0.727553 0.25984,0.25984 0.675584,0.25984 0.03118,0 0.207872,-0.05197 0.103936,0.05197 0.155904,0.05197 0.280628,-0.05197 0.467713,-0.05197 0.301414,0.592435 0.415744,0.675584 0,0.05197 -0.05197,0.155904 0.05197,0.51968 0.05197,0.77952 0,0.155904 -1.091329,0.51968 -0.353382,0.155904 -1.507072,0.363777 v 0.05197 h 0.363776 q 1.330381,-0.301415 2.078721,-0.623617 h 0.05197 q 0.103936,0.02079 0.103936,0.103936 v 1.091329 h 1.766912 q 0.07276,0 0.155904,0.155904 v 0.25984 q -0.155904,0.675584 -0.155904,0.727552 v 0.25984 l 0.103936,0.155904 -0.155904,0.935425 0.415745,0.675584 -0.103936,0.05197 h -2.026753 v 0.51968 q 0,0.103936 -0.155904,0.103936 -0.06236,0 -0.571648,-0.415744 l -0.467713,-0.05197 q 0,0.14551 0.519681,0.207872 0.04157,0.155904 0.623616,0.415744 l 0.05197,0.25984 v 0.831489 q 0,0.218265 -0.05197,0.415744 0.05197,0.197478 0.05197,0.415744 v 0.467712 h 0.51968 q 0.103936,0.02079 0.103936,0.103936 v 0.155904 q 0,0.228659 -0.415744,1.091329 -0.103936,0.332595 -0.103936,0.467712 0.05197,0 0.05197,0.05197 -0.935424,0.08315 -0.935424,0.571648 0,0.623616 -0.831489,0.935424 h -0.05197 q -0.239053,-0.103936 -0.467712,-0.103936 -0.332595,0.103936 -0.467712,0.103936 0,-0.103936 -0.623616,-0.77952 0,-0.530074 -0.155904,-0.675584 v -0.05197 h 0.207872 l 0.25984,0.207872 h 0.311808 v -0.05197 q -0.540468,0 -0.883456,-0.831489 l -0.103936,-0.05197 q -0.124724,0 -0.467713,0.155905 -1.143296,-0.155905 -1.143296,-0.467713 0,-0.176691 -0.05197,-0.25984 0.05197,-0.280627 0.05197,-0.467712 v -0.415744 h 0.25984 q 0.103936,0 0.103936,-0.103936 0,-0.103936 -0.155904,-0.103936 -0.155904,0.05197 -0.155904,0.103936 -0.571648,0 -0.571648,-0.415744 0,-0.363776 0.05197,-0.415744 -0.05197,-0.353383 -0.05197,-0.571649 v -0.05197 q 0,-0.467712 0.05197,-0.623616 -0.05197,-0.457318 -0.05197,-0.77952 v -0.883456 q 0,-0.06236 0.311808,-0.259841 l 0.25984,0.05197 h 0.415744 q 0.925031,-0.207873 1.03936,-0.207873 0.145511,0.415745 0.207873,0.415745 h 0.103936 V 29.85235 l -0.155904,-0.207873 q 0.207872,-0.353382 0.207872,-0.623616 -0.207872,-0.08315 -0.207872,-0.363776 h -0.103937 l -0.05197,0.25984 q 0.08315,0 0.207873,0.207872 l -0.05197,0.25984 q -0.301415,0 -0.831489,0.05197 -0.103936,-0.05197 -0.155904,-0.05197 -0.166297,0.103936 -0.311808,0.103936 h -0.155904 q -0.103936,0 -0.207872,-0.415744 l 0.05197,-0.103936 v -0.103936 q -0.103936,-0.685978 -0.207872,-0.935424 0.311808,-0.696372 0.311808,-0.935424 -0.25984,0 -0.623616,-0.727553 -0.05197,-0.197478 -0.05197,-0.467712 v -0.467712 q 0,-0.11433 0.363776,-0.207872 l -0.103936,-0.207872 q 0.14551,-0.280628 0.25984,-1.091329 0.478106,-0.207872 0.571648,-0.207872 h 0.363776 q 0.11433,0 0.207872,0.05197 0.145511,0 0.623617,-1.03936 0,-0.155904 0.155904,-0.155904 z \" \ r \ n "
+ " id= \" path22009 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 44.645964,22.368955 v 0.103936 h 0.207872 v -0.103936 z \" \ r \ n "
+ " id= \" path22007 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 42.255435,22.161083 v 0.103936 q 0.311808,0 0.571648,0.311808 l 0.363776,-0.311808 h -0.25984 q -0.124723,0.103936 -0.207872,0.103936 -0.37417,-0.207872 -0.467712,-0.207872 z \" \ r \ n "
+ " id= \" path22005 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 36.954697,21.901243 q 0.02079,0.103936 0.103936,0.103936 0.103936,-0.05197 0.155904,-0.05197 v -0.05197 z \" \ r \ n "
+ " id= \" path22003 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 45.78926,21.745339 h 0.155904 v -0.103936 h -0.05197 q -0.103936,0.02079 -0.103936,0.103936 z \" \ r \ n "
+ " id= \" path22001 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 38.305865,21.225658 v 0.415745 q 0.363776,-0.103936 0.571649,-0.103936 v -0.103936 l -0.363777,0.05197 Q 38.357833,21.319203 38.357833,21.22566 Z \" \ r \ n "
+ " id= \" path21999 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 41.631818,20.809914 q 0.05197,0 0.155905,0.05197 0.04157,0 0.415744,-0.05197 1.143296,0.05197 1.507072,0.05197 0.02079,0.103936 0.103936,0.103936 0.05197,0 0.05197,-0.05197 l 0.25984,0.05197 q 0.05197,0 0.155904,-0.05197 0.259841,0.06236 0.259841,0.155904 l 0.103936,-0.05197 h 0.05197 q 1.683763,0 3.533825,1.403137 1.03936,1.174477 1.03936,2.598401 0,0.09354 -0.103936,0.25984 l 0.103936,0.207872 q -0.353382,2.026753 -0.883456,2.026753 0,0.415744 -0.987392,1.195264 -0.467713,-0.301414 -0.467713,-1.351168 h 0.05197 q 0.675585,-0.03118 0.675585,-0.103936 l 0.311808,-0.415745 v -0.103936 q -0.155904,-0.166297 -0.155904,-0.25984 h -0.103936 v 0.05197 l 0.05197,0.363776 q -0.207872,0.207873 -0.623617,0.311809 -0.301414,0 -0.623616,-0.103936 -0.05197,0 -0.05197,0.05197 l -0.363776,-0.05197 h -0.207872 q -0.77952,0 -1.03936,0.571648 -0.176692,0.311808 -0.727553,0.311808 0,0.77952 -0.363776,0.77952 0,0.103936 -0.935424,0.935424 l -0.103936,-0.05197 -0.77952,0.311809 q -0.239053,-0.103936 -0.25984,-0.207872 0.103936,-0.394957 0.103936,-0.727553 -0.103936,0 -0.155905,-0.311808 0.08315,-0.727552 0.467713,-0.727552 0.831488,-0.207872 0.935424,-0.207872 l 0.05197,0.103936 q 0.25984,-0.155904 0.415744,-0.155904 h 0.25984 v -0.05197 q 0,-0.07275 -0.155904,-0.155904 h -0.25984 v -0.05197 q 0.571648,-0.4885 0.571648,-0.987393 v -0.77952 q -0.249446,-0.322202 -0.25984,-0.415744 0.06236,0 0.415744,-0.51968 v -0.103936 l -0.467712,0.571648 h -0.103944 q -0.291021,-0.207866 -1.091328,-0.36377 l -0.51968,0.05197 h -0.935425 q -0.571648,0 -0.571648,-0.207872 0.831488,-0.384564 0.831488,-0.675585 h 0.207872 l 0.259841,-0.05197 v -0.05197 q -0.415745,0 -0.415745,-0.155904 0.09354,-0.498893 0.727553,-0.935424 0.05197,-0.09354 0.05197,-0.207872 0,-0.124723 -0.155904,-0.311808 v -0.103936 q 0,-0.08315 0.77952,-0.363776 0.11433,0 0.571648,0.05197 0.135117,0 0.623616,-0.207872 0.446925,0.05197 0.727553,0.05197 h 0.207872 l 0.25984,-0.05197 V 21.589435 H 44.7499 q 0,-0.25984 -0.103936,-0.25984 v 0.25984 q -0.103936,0.05197 -0.155904,0.05197 -0.05197,-0.09354 -0.05197,-0.207872 h -0.103936 q 0,0.08315 -0.103936,0.155904 l -0.25984,-0.05197 h -0.103936 q -0.176691,0 -0.363776,0.155904 h -0.51968 q -0.228659,0 -0.935424,0.311808 h -0.103936 q -0.124724,0 -0.25984,-0.51968 0.05197,-0.103936 0.05197,-0.155904 -0.207873,-0.426138 -0.207873,-0.467713 z \" \ r \ n "
+ " id= \" path21997 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 36.954697,20.809914 q 0.384563,0 0.571648,0.05197 0.342989,-0.05197 0.675584,-0.05197 h 0.623616 q 0.218266,0 0.415745,0.05197 0.197478,-0.05197 0.415744,-0.05197 h 0.935424 l 0.207872,0.207872 q 0,-0.08315 0.207872,-0.207872 h 0.155904 q 0.07276,0 0.155904,0.155904 -0.478105,0.415745 -1.091328,0.415745 -0.09354,-0.05197 -0.207872,-0.05197 v 0.05197 q 0,0.05197 0.207872,0.155904 0.457319,0 0.987392,-0.311809 0.187085,0 0.571649,1.403137 l -0.467713,0.51968 q 0,0.103936 -0.25984,0.467712 0,0.613223 -0.77952,0.883457 0,0.228659 -0.467712,0.363776 -0.197479,-0.06236 -0.51968,-0.675584 h -0.05197 l -0.103936,0.05197 -0.207872,-0.05197 q -0.363777,0.103936 -0.571649,0.103936 -0.228659,0 -0.623616,-0.259841 v -0.05197 q 0,-0.03118 0.207872,-0.25984 -0.311808,-0.478105 -0.363776,-0.935424 0.426138,-0.789914 0.623616,-1.03936 h -0.05197 q -0.301414,0.363776 -0.467712,0.363776 0.05197,0.155904 0.103936,0.155904 -0.103936,0.249446 -0.363776,0.467712 h -0.311808 q -0.384563,0 -0.415744,-0.155904 0,-0.05197 0.05197,-0.05197 -0.08315,-0.25984 -0.363776,-0.25984 h -0.207872 l -0.155905,-0.25984 q 0.166298,-1.195265 0.467713,-1.195265 z \" \ r \ n "
+ " id= \" path21995 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:Crackvetica;-inkscape-font-specification:Crackvetica \" \ r \ n "
+ " d= \" m 33.888584,20.602042 h 1.81888 l 0.103936,0.05197 q -0.207872,0.914637 -0.311808,1.039361 0.311808,0.530073 0.311808,0.727552 -0.613222,0.77952 -0.77952,0.77952 l -0.25984,-0.05197 -0.25984,0.05197 q -0.155904,0 -0.155904,-0.155904 H 34.25236 l 0.05197,0.103936 q -0.467712,0.394957 -0.467712,0.623616 H 33.73268 v -3.014145 q 0,-0.07276 0.155904,-0.155904 z \" \ r \ n "
+ " id= \" path21971 \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </svg> \ r \ n " ;
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG de la note C
* @return
* /
2022-04-25 13:25:20 +02:00
public static String NoteC ( ) {
return " <?xml version= \" 1.0 \" encoding= \" UTF-8 \" standalone= \" no \" ?> \ r \ n "
+ " <!-- Created with Inkscape (http://www.inkscape.org/) --> \ r \ n "
+ " \ r \ n "
+ " <svg \ r \ n "
+ " width= \" 38.443188mm \" \ r \ n "
+ " height= \" 38.443161mm \" \ r \ n "
+ " viewBox= \" 0 0 38.443188 38.443161 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " id= \" svg5 \" \ r \ n "
+ " inkscape:version= \" 1.1.1 (3bf5ae0d25, 2021-09-20) \" \ r \ n "
+ " sodipodi:docname= \" NoteC.svg \" \ r \ n "
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" > \ r \ n "
+ " <sodipodi:namedview \ r \ n "
+ " id= \" namedview7 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " showguides= \" true \" \ r \ n "
+ " inkscape:guide-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox-edge-midpoints= \" true \" \ r \ n "
+ " inkscape:bbox-paths= \" true \" \ r \ n "
+ " inkscape:snap-nodes= \" false \" \ r \ n "
+ " inkscape:snap-bbox-midpoints= \" true \" \ r \ n "
+ " inkscape:snap-global= \" false \" \ r \ n "
+ " fit-margin-top= \" 0 \" \ r \ n "
+ " fit-margin-left= \" 0 \" \ r \ n "
+ " fit-margin-right= \" 0 \" \ r \ n "
+ " fit-margin-bottom= \" 0 \" \ r \ n "
+ " inkscape:zoom= \" 4.3901061 \" \ r \ n "
+ " inkscape:cx= \" 70.72722 \" \ r \ n "
+ " inkscape:cy= \" 85.53324 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:current-layer= \" text1481 \" > \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 1,0 \" \ r \ n "
+ " id= \" guide12970 \" /> \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 0,-1 \" \ r \ n "
+ " id= \" guide12972 \" /> \ r \ n "
+ " </sodipodi:namedview> \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" /> \ r \ n "
+ " <g \ r \ n "
+ " inkscape:label= \" Calque 1 \" \ r \ n "
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " id= \" layer1 \" \ r \ n "
+ " transform= \" translate(-19.656191,-12.181169) \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path12996 \" \ r \ n "
+ " style= \" font-variation-settings:normal;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000 \" \ r \ n "
+ " inkscape:transform-center-x= \" 0.041927404 \" \ r \ n "
+ " inkscape:transform-center-y= \" -13.470202 \" \ r \ n "
+ " d= \" m 38.817552,12.181169 -1.798582,3.127294 -0.250675,0.435907 -0.34885,-0.348849 -2.552465,-2.549995 -0.932324,3.485405 -0.133983,0.500737 -0.440846,-0.254382 -3.124823,-1.802284 0.0013,3.607656 v 0.518643 l -0.490858,-0.131513 -3.485405,-0.932322 0.93541,3.48417 0.1346,0.500737 H 25.82067 l -3.607657,0.0019 1.805372,3.12359 0.259321,0.448873 -0.491476,0.131513 -3.48417,0.93541 2.551848,2.549995 0.366754,0.366137 -0.440846,0.255 -3.12359,1.804753 3.125442,1.802903 0.448873,0.258705 -0.359345,0.359962 -2.549995,2.552465 3.484787,0.932323 0.501355,0.133984 -0.254382,0.440846 -1.802902,3.124823 3.607656,-0.0013 h 0.518644 l -0.131514,0.490857 -0.932322,3.485405 3.48417,-0.935408 0.501356,-0.1346 v 0.509379 l 0.0013,3.607657 3.12359,-1.80537 0.448872,-0.259324 0.132131,0.491477 0.934792,3.484172 2.549996,-2.551849 0.366756,-0.366756 0.25438,0.440846 1.804756,3.12359 1.802901,-3.125439 0.259324,-0.449492 0.359962,0.359962 2.551846,2.549996 0.932323,-3.484788 0.133983,-0.501356 0.440846,0.254383 3.124826,1.802904 -0.0013,-3.607657 V 43.9042 l 0.491477,0.131514 3.484788,0.932323 -0.934795,-3.484172 -0.1346,-0.501355 h 0.508766 l 3.607656,-0.0013 -1.804756,-3.12359 -0.259321,-0.448872 0.490858,-0.132131 3.484788,-0.934792 -2.552465,-2.549997 -0.366753,-0.366755 0.440846,-0.25438 3.12359,-1.804756 -3.124826,-1.802901 -0.449489,-0.259324 0.359962,-0.359961 2.549997,-2.551847 -3.485408,-0.932323 -0.500736,-0.133983 0.254382,-0.440847 1.802285,-3.124824 -3.607657,0.0012 h -0.518645 l 0.131515,-0.491476 0.932323,-3.484788 -3.484169,0.934793 -0.500739,0.1346 V 18.34556 l -0.0019,-3.607657 -3.12359,1.804755 -0.448873,0.259321 -0.131514,-0.490858 -0.935408,-3.484788 -2.549997,2.552465 -0.375398,0.376016 a 15.574866,15.762139 0 0 0 -0.0032,-6.32e-4 l -0.261793,-0.451343 z \" /> \ r \ n "
+ " <ellipse \ r \ n "
+ " style= \" fill:#ffffff;stroke:#ff0000;stroke-width:1.012;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" ellipse13122 \" \ r \ n "
+ " cx= \" 38.828659 \" \ r \ n "
+ " cy= \" 31.377256 \" \ r \ n "
+ " rx= \" 13.733081 \" \ r \ n "
+ " ry= \" 13.899035 \" /> \ r \ n "
+ " <g \ r \ n "
+ " aria-label= \" C \" \ r \ n "
+ " transform= \" scale(0.99914692,1.0008538) \" \ r \ n "
+ " id= \" text1481 \" \ r \ n "
+ " style= \" font-size:25.9537px;line-height:1.25;fill:#e12aff;stroke:#000000;stroke-width:0.065 \" > \ r \ n "
+ " <g \ r \ n "
+ " id= \" g7800 \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path5282 \" \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas';stroke-width:0.245669 \" \ r \ n "
+ " d= \" M 74.179688 35.861328 C 69.110589 35.890522 64.420661 36.838611 60.111328 38.707031 C 55.798931 40.605112 52.041474 43.224502 48.839844 46.5625 C 45.638216 49.835049 43.090153 53.695816 41.195312 58.146484 C 39.300469 62.59715 38.222293 67.343086 37.960938 72.382812 C 38.352976 72.251912 38.647735 72.022569 38.84375 71.695312 C 38.647735 72.022569 38.548828 72.350481 38.548828 72.677734 C 38.222123 72.677734 38.026268 72.643567 37.960938 72.578125 L 37.960938 73.363281 C 38.091623 73.49419 38.190529 73.461975 38.255859 73.265625 C 38.321189 73.069265 38.353516 72.938489 38.353516 72.873047 C 38.353516 73.331207 38.385842 73.659119 38.451172 73.855469 L 38.15625 73.855469 L 37.960938 73.757812 C 37.960938 73.954165 38.025565 74.181555 38.15625 74.443359 C 38.352265 74.639715 38.386545 74.836853 38.255859 75.033203 C 38.190504 74.967761 38.123924 74.935547 38.058594 74.935547 C 38.014904 74.935547 37.982714 74.931145 37.960938 74.923828 L 37.960938 77.291016 C 38.026268 77.291016 38.058594 77.258801 38.058594 77.193359 C 38.058594 77.062451 38.09092 76.996094 38.15625 76.996094 L 38.15625 77.095703 L 38.548828 76.800781 L 39.626953 76.703125 L 39.724609 76.703125 L 40.117188 76.603516 L 39.921875 76.408203 L 40.509766 76.408203 L 40.3125 76.603516 L 40.738281 76.533203 C 40.727288 76.525897 40.716071 76.516871 40.705078 76.505859 C 40.639748 76.440393 40.607422 76.374035 40.607422 76.308594 C 40.607422 76.112244 40.738645 76.015625 41 76.015625 L 41 76.505859 L 41.783203 76.408203 L 41.587891 76.996094 L 41.685547 76.996094 L 41.587891 77.193359 C 41.457205 77.520616 41.390625 77.814367 41.390625 78.076172 C 41.390625 78.337974 41.325998 78.46875 41.195312 78.46875 L 41 79.451172 C 41.653394 79.647522 42.404495 79.746094 43.253906 79.746094 L 43.351562 79.648438 L 43.449219 79.746094 L 44.429688 79.746094 C 44.756383 79.746094 45.083458 79.778308 45.410156 79.84375 C 45.540842 80.040103 45.637795 80.269446 45.703125 80.53125 C 45.833803 80.7276 46.029658 80.826172 46.291016 80.826172 C 46.487044 80.826172 46.618264 80.661238 46.683594 80.333984 C 46.748924 80.006728 46.78125 79.646612 46.78125 79.253906 C 46.78125 78.795749 46.748924 78.371221 46.683594 77.978516 C 46.618264 77.520356 46.585937 77.192444 46.585938 76.996094 L 47.859375 76.996094 L 47.957031 77.585938 L 49.330078 76.996094 L 49.330078 79.15625 C 49.983472 78.828996 50.571037 78.503037 51.09375 78.175781 C 51.681806 77.848528 52.237052 77.422046 52.759766 76.898438 C 52.825096 76.963889 52.924002 77.126867 53.054688 77.388672 C 53.185373 77.585035 53.25 77.715808 53.25 77.78125 L 54.818359 81.021484 L 53.25 79.548828 L 52.269531 80.53125 L 52.564453 80.628906 L 52.074219 80.628906 L 49.917969 82.691406 L 48.839844 82.789062 L 48.349609 83.279297 L 47.664062 82.886719 L 47.271484 83.083984 L 48.251953 85.832031 L 48.544922 86.029297 C 48.544922 86.094764 48.512596 86.159168 48.447266 86.224609 L 48.447266 86.324219 L 46.878906 87.697266 L 45.800781 87.304688 L 45.410156 87.599609 C 45.344826 87.599609 45.24592 87.535205 45.115234 87.404297 C 45.049879 87.273388 45.082205 87.174817 45.212891 87.109375 C 44.624837 86.847568 44.004956 86.618225 43.351562 86.421875 C 42.763509 86.22552 42.175944 86.028381 41.587891 85.832031 C 41.522561 85.96294 41.423654 85.96294 41.292969 85.832031 C 41.162283 85.701123 41.06533 85.636719 41 85.636719 L 40.117188 86.324219 L 39.529297 86.814453 L 39.724609 87.304688 L 40.019531 87.011719 L 40.214844 87.207031 L 39.822266 87.501953 C 39.952946 87.829207 40.116485 88.352304 40.3125 89.072266 C 40.508513 89.726775 40.672049 90.185461 40.802734 90.447266 L 41.490234 90.447266 L 41.097656 90.9375 L 41 90.9375 C 41 91.068409 41.032326 91.16698 41.097656 91.232422 C 41.228316 91.232422 41.260643 91.296826 41.195312 91.427734 L 41.978516 93 L 43.644531 93 L 44.234375 93.980469 L 42.371094 93.980469 C 42.697792 94.569527 43.024867 95.158989 43.351562 95.748047 C 43.678261 96.271656 44.005336 96.79475 44.332031 97.318359 L 44.527344 97.318359 L 44.429688 97.417969 C 44.756383 97.941578 45.083458 98.432468 45.41015
+ " transform= \" matrix(0.26480924,0,0,0.26435762,19.672974,12.170778) \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas';fill:#e12aff;fill-opacity:1 \" \ r \ n "
+ " d= \" m 28.992856,26.65275 q -0.129768,0.207629 -0.129768,0.467166 0.02595,0.259537 0,0.493121 L 29.3043,27.457314 q 0.05191,0.103815 0.103815,0.20763 0.07786,0.07786 0.129769,0.155722 l 0.467166,-0.389305 q -0.259537,-0.20763 -0.49312,-0.41526 -0.233583,-0.207629 -0.519074,-0.363351 z \" \ r \ n "
+ " id= \" path5280 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.568082,31.954486 q -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5278 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.41236,31.461365 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5276 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.41236,31.850671 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5274 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.308545,32.317837 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5272 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.074962,32.447606 0.103815,0.07786 0.103815,0.02595 -0.103815,-0.07786 z \" \ r \ n "
+ " id= \" path5270 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.049012,32.317837 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5268 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.867336,32.162115 q -0.05191,0 -0.129768,0.07786 h 0.233583 q -0.07786,-0.07786 -0.103815,-0.07786 z \" \ r \ n "
+ " id= \" path5266 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.19254,31.046106 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5264 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.21849,31.643041 q -0.02595,-0.05191 -0.05191,-0.07786 0,-0.05191 -0.02595,-0.103815 l -0.02595,0.05191 q 0.05191,0.103814 0.103815,0.129768 z \" \ r \ n "
+ " id= \" path5262 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.088721,30.994199 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5260 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.984907,31.201828 0.07786,0.07786 0.02595,-0.05191 0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path5258 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.984907,31.35755 0.02595,0.05191 0.05191,0.02595 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5256 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.907047,31.539226 0.207629,0.155723 q -0.02595,-0.05191 -0.05191,-0.07786 0,-0.05191 -0.02595,-0.103814 h -0.07786 z \" \ r \ n "
+ " id= \" path5254 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.958957,31.928532 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5252 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.803235,31.876622 v 0.02595 q 0.05191,-0.02595 0.103815,-0.129768 l -0.05191,0.02595 z \" \ r \ n "
+ " id= \" path5250 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.803235,31.772808 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5248 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.751325,32.42165 q 0.129769,-0.05191 0.20763,-0.155722 h -0.05191 l -0.103815,0.05191 z \" \ r \ n "
+ " id= \" path5246 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.010862,32.188067 q 0,-0.02595 0.05191,-0.07786 0,-0.02595 -0.05191,-0.129769 z \" \ r \ n "
+ " id= \" path5244 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 30.244446,32.214017 H 30.08873 l 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path5242 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.296356,32.162107 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5240 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.270406,31.928524 q 0.07786,0 0.129769,-0.02595 0.07786,-0.05191 0.129768,-0.103815 -0.05191,0 -0.155722,0.05191 v -0.103815 h -0.181676 q 0.02595,0.02595 0.07786,0.07786 0.05191,0.02595 0.05191,0.05191 z \" \ r \ n "
+ " id= \" path5238 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.452082,31.513265 q 0.02595,-0.02595 0.02595,-0.05191 0.02595,-0.02595 0.05191,-0.05191 v -0.02595 h -0.207629 z \" \ r \ n "
+ " id= \" path5236 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.711619,32.058292 h -0.129768 l 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path5234 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.659709,31.90257 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5232 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.711619,31.40945 q -0.05191,-0.103815 -0.233583,-0.20763 -0.07786,0.02595 -0.181676,0.05191 -0.07786,0.02595 -0.129768,0.07786 0.07786,0 0.155722,-0.02595 0.103815,-0.02595 0.181676,-0.05191 0.07786,0.103814 0.207629,0.155722 z \" \ r \ n "
+ " id= \" path5230 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.841399,32.888811 -0.05191,-0.05191 q -0.155722,0.155723 -0.207629,0.259537 z \" \ r \ n "
+ " id= \" path5228 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.763539,33.174301 q 0.07786,-0.07786 0.155722,-0.155722 0.07786,-0.07786 0.155722,-0.181676 l -0.07786,0.02595 q -0.103815,0.07786 -0.259537,0.285491 z \" \ r \ n "
+ " id= \" path5226 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.178798,32.940718 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5224 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.204748,32.60332 -0.103815,-0.07786 -0.07786,0.05191 v 0.05191 l 0.07786,0.05191 z \" \ r \ n "
+ " id= \" path5222 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.334516,33.044533 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5220 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.282606,32.914764 q 0.05191,-0.05191 0.07786,-0.05191 H 31.20474 Z \" \ r \ n "
+ " id= \" path5218 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.360466,32.473552 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5216 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.386416,32.317829 q 0.05191,0 0.07786,0.02595 0.02595,0.02595 0.07786,0.05191 l 0.07786,-0.07786 q -0.155723,-0.05191 -0.233584,-0.103814 z \" \ r \ n "
+ " id= \" path5214 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.697861,32.759042 -0.07786,-0.07786 -0.103815,0.07786 0.103815,0.103815 z \" \ r \ n "
+ " id= \" path5212 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.775721,31.40945 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5210 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.879548,32.47355 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5208 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.879548,32.214013 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5206 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.268853,31.149911 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5204 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.03527,32.992624 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5202 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.03527,30.968235 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5200 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.294807,32.032337 -0.05191,-0.05191 h -0.05191 l 0.05191,0.05191 z \" \ r \ n "
+ " id= \" path5198 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.320757,32.47355 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5196 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.436766,31.305633 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5194 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.332951,31.305633 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5192 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.281041,30.942281 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5190 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.177227,30.994191 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5188 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.125317,31.098005 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5186 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.151267,31.824709 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5184 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.6841,31.046098 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5182 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.502414,31.279677 q 0.05191,-0.103814 0.05191,-0.129768 -0.05191,-0.103815 -0.05191,-0.129769 z \" \ r \ n "
+ " id= \" path5180 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.424554,31.565168 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5178 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.528369,31.746844 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5176 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.787906,31.409446 0.02595,0.02595 0.02595,0.02595 h 0.02595 q 0,-0.05191 -0.05191,-0.05191 -0.05191,-0.02595 -0.02595,-0.05191 l -0.07786,-0.181675 q -0.07786,0.07786 -0.155722,0.155722 -0.07786,0.07786 -0.129769,0.181676 h 0.363352 z \" \ r \ n "
+ " id= \" path5174 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.969582,31.02014 0.103815,-0.05191 q -0.05191,-0.05191 -0.05191,-0.07786 -0.05191,0.02595 -0.155722,0.129768 z \" \ r \ n "
+ " id= \" path5172 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.047442,31.253724 -0.02595,0.02595 0.02595,0.02595 0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path5170 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.021492,31.383492 q 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5168 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.943632,31.305632 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5166 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.995542,31.954475 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5164 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.021492,31.64303 0.07786,-0.07786 q -0.05191,-0.05191 -0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path5162 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.151261,32.603317 q 0.05191,-0.05191 0.05191,-0.07786 h -0.129768 z \" \ r \ n "
+ " id= \" path5160 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.255076,31.279678 0.05191,-0.07786 h -0.129768 z \" \ r \ n "
+ " id= \" path5158 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.462705,32.499502 -0.181676,-0.07786 0.07786,0.07786 0.181675,0.07786 z \" \ r \ n "
+ " id= \" path5156 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.452076,35.250594 q 0.103815,-0.103814 0.155722,-0.181676 -0.07786,0.02595 -0.181675,0.129769 z \" \ r \ n "
+ " id= \" path5154 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.607798,35.250594 -0.02595,-0.02595 q 0,-0.02595 0.02595,-0.02595 0.02595,0 0.02595,0.02595 0,0.02595 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5152 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.594039,35.899437 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5150 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.490224,36.13302 0.02595,0.02595 0.02595,-0.02595 -0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path5148 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.360456,35.977298 q 0.02595,0 0.02595,0.02595 0,0.02595 -0.02595,0.02595 -0.02595,0 -0.02595,-0.02595 0,-0.02595 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5146 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.308546,35.562039 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5144 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.100917,35.354409 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5142 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.074967,35.510131 q 0,0.02595 0.05191,0.07786 l 0.05191,-0.07786 0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path5140 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.204736,35.925391 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5138 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.997106,35.821576 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5136 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.893291,35.769666 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5134 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.919241,36.236833 q 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5132 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.360454,37.378796 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5130 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.568083,37.274981 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5128 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.671898,37.326891 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5126 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.801667,36.340651 q -0.103815,0.103814 -0.259537,0.181676 h -0.02595 q 0.02595,-0.155723 -0.05191,-0.337398 -0.259536,0.181675 -0.519073,0.545027 l 0.570981,-0.207629 h 0.02595 l -0.181676,0.570981 -0.02595,0.02595 v 0.103814 l 0.441213,-0.155722 0.02595,-0.363352 z \" \ r \ n "
+ " id= \" path5124 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.827617,35.458225 -0.02595,-0.02595 q 0,-0.02595 0.02595,-0.02595 0.02595,0 0.02595,0.02595 0,0.02595 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5122 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.879527,37.638336 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5120 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.879527,36.470419 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5118 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.009295,38.105502 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5116 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 40.18471,38.105502 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5114 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.925173,38.157412 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5112 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.665636,38.702439 q 0.05191,0.05191 0.05191,0.07786 l 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5110 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.717546,39.532958 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5108 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.639686,38.806254 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5106 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.535871,37.482615 q -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5104 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.509921,39.039837 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5102 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.276338,37.223078 q -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5100 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.068708,38.961976 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5098 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.757264,37.949782 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5096 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.393912,37.378801 0.05191,0.05191 q 0.02595,0 0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path5094 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.523681,38.936023 -0.07786,0.05191 0.02595,0.02595 0.07786,-0.05191 0.02595,-0.07786 z \" \ r \ n "
+ " id= \" path5092 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.342005,39.091745 0.05191,-0.02595 0.02595,-0.05191 -0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5090 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.186283,38.28718 0.02595,0.05191 0.02595,-0.05191 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5088 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.134373,38.079551 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5086 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.004605,38.339088 q 0.02595,0 0.07786,0.05191 l 0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path5084 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.978655,38.598625 q 0.05191,-0.05191 0.07786,-0.05191 l -0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5082 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.08247,38.832208 q 0,0.05191 -0.05191,0.129768 -0.05191,0.05191 -0.05191,0.103815 0,0.02595 0.02595,0.07786 0.02595,0.05191 0.05191,0.05191 0.05191,0 0.103815,-0.259537 0.05191,-0.259537 0.103815,-0.311445 -0.07786,0.05191 -0.181676,0.20763 z \" \ r \ n "
+ " id= \" path5080 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.238192,39.195566 q 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5078 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.004609,39.377241 -0.02595,0.02595 0.02595,0.05191 0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path5076 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.900794,39.169612 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5074 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.848884,39.065797 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5072 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.822934,38.624584 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5070 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.796984,36.158983 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5068 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.745074,38.157418 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5066 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.693164,38.442908 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5064 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.589349,38.339094 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5062 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.38172,36.003261 0.05191,0.05191 0.05191,-0.05191 z \" \ r \ n "
+ " id= \" path5060 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.43363,36.807825 v 0.155722 l 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5058 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.35577,36.574242 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5056 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.30386,36.755918 -0.07786,0.07786 0.05191,0.05191 q 0.103815,-0.05191 0.155722,-0.155722 z \" \ r \ n "
+ " id= \" path5054 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.836693,37.690251 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5052 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.784783,37.378807 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5050 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.810733,38.676492 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5048 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.784783,39.377241 -0.02595,0.02595 0.02595,0.05191 0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path5046 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.732873,37.638344 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5044 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.706923,38.884121 0.02595,-0.05191 0.05191,-0.02595 -0.05191,-0.02595 -0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path5042 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.629063,37.794066 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5040 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.629063,39.065797 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5038 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.577153,35.71777 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5036 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.447385,38.598631 0.07786,-0.05191 0.02595,-0.05191 H 36.44738 Z \" \ r \ n "
+ " id= \" path5034 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.447385,38.365047 -0.02595,-0.02595 -0.05191,0.02595 0.05191,0.02595 z \" \ r \ n "
+ " id= \" path5032 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.577153,39.325334 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5030 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.13594,37.794066 q 0,-0.05191 0.07786,-0.07786 0.07786,-0.02595 0.129769,-0.02595 h -0.02595 -0.05191 q -0.129769,0 -0.155722,0.07786 L 36.5512,38.183375 36.291663,37.79407 Z \" \ r \ n "
+ " id= \" path5028 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.980218,39.377241 0.07786,0.07786 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5026 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.265709,35.639909 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5024 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.239759,36.262798 q -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5022 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.239759,37.586436 q -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5020 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.161899,37.534526 q -0.07786,0 -0.155722,0.07786 h 0.07786 z \" \ r \ n "
+ " id= \" path5018 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.954269,34.26436 0.02595,-0.05191 0.05191,-0.02595 -0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path5016 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.954269,39.143655 q 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5014 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.642825,39.377238 q 0.103815,-0.02595 0.20763,-0.129768 l -0.103815,0.02595 z \" \ r \ n "
+ " id= \" path5012 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.668775,38.936026 0.05191,-0.02595 -0.05191,-0.02595 -0.02595,-0.05191 v 0.155722 z \" \ r \ n "
+ " id= \" path5010 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.746635,38.079554 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5008 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.824495,34.861295 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path5006 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.876405,37.482618 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5004 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.772591,31.253731 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5002 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.798541,32.447601 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path5000 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.720681,30.942286 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4998 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.720681,31.046101 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4996 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.616866,31.046101 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4994 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.513052,30.994191 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4992 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.513052,31.305635 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4990 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.590912,33.252163 h -0.02595 l -0.02595,0.02595 0.02595,0.07786 0.02595,0.02595 q -0.155723,-0.05191 -0.233584,-0.129768 l 0.155723,0.207629 0.415259,0.02595 -0.311445,-0.155722 q 0.05191,0 0.103815,0 0.07786,-0.02595 0.129769,-0.02595 h 0.07786 v -0.07786 q -0.05191,-0.155722 -0.103815,-0.20763 H 35.51305 q -0.07786,0.07786 -0.07786,0.103815 0,0.05191 0,0.103815 0,0.05191 0.05191,0.05191 l 0.05191,-0.02595 h 0.02595 0.05191 z \" \ r \ n "
+ " id= \" path4988 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.590912,38.650532 h -0.129769 l 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4986 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.487097,39.117699 v 0.155722 h 0.103815 v -0.155722 z \" \ r \ n "
+ " id= \" path4984 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.253514,32.39569 0.05191,0.02595 0.02595,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4982 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.045884,31.175867 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4980 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.786347,31.331589 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4978 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.838257,33.09644 q -0.129768,0.155723 -0.207629,0.389306 -0.05191,0.233583 -0.103815,0.415259 l 0.07786,0.285491 q 0.155722,-0.05191 0.285491,-0.129769 0.155722,-0.07786 0.311444,-0.129768 l 0.155722,0.155722 v -0.441213 q -0.07786,0.103815 -0.129768,0.02595 -0.02595,-0.103815 -0.07786,-0.155723 l -0.311445,0.20763 q 0.07786,-0.311444 0,-0.622889 z \" \ r \ n "
+ " id= \" path4976 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.149699,34.368172 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4974 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.942069,35.847532 -0.103815,0.07786 0.103815,0.07786 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path4972 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.52681,34.965107 v 0.129768 l 0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path4970 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.52681,34.731523 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4968 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 34.57872,35.69181 34.65658,35.61395 34.60467,35.588 34.57872,35.53609 Z \" \ r \ n "
+ " id= \" path4966 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.65658,34.99106 0.02595,-0.05191 -0.02595,-0.02595 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4964 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.65658,30.994191 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4962 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.500858,32.006385 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4960 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.448948,37.79406 q -0.05191,0.103815 -0.05191,0.155722 0.129769,-0.05191 0.259537,-0.129768 l -0.103814,-0.02595 z \" \ r \ n "
+ " id= \" path4958 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.345133,37.897875 v -0.441213 l -0.207629,0.207629 z \" \ r \ n "
+ " id= \" path4956 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.215365,38.183365 -0.07786,-0.02595 v 0.103814 h 0.129768 z \" \ r \ n "
+ " id= \" path4954 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.11155,35.847532 -0.155722,0.103815 0.07786,-0.02595 0.07786,-0.07786 v -0.05191 h -0.155722 z \" \ r \ n "
+ " id= \" path4952 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.319179,34.757477 h -0.129768 l 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4950 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.293229,34.913199 -0.02595,0.02595 0.02595,0.05191 0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path4948 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.189414,34.913199 -0.05191,0.02595 0.05191,0.05191 0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path4946 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.137504,35.587995 -0.05191,0.05191 0.05191,0.05191 0.07786,0.02595 v -0.155722 z \" \ r \ n "
+ " id= \" path4944 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.111554,36.210884 q -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4942 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.371091,38.7803 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4940 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.371091,38.884115 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4938 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.007739,32.1102 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4936 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.163461,31.40945 q -0.05191,-0.05191 -0.07786,-0.05191 v 0.129769 l 0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path4934 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.267277,32.862864 0.07786,-0.103815 -0.07786,-0.07786 -0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4932 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.163462,33.693382 q -0.155722,0.103815 -0.311444,0.20763 -0.155722,0.103815 -0.285491,0.233583 0.20763,0 0.389306,-0.05191 0.181676,-0.05191 0.389305,-0.103815 -0.02595,-0.129768 -0.181676,-0.285491 z \" \ r \ n "
+ " id= \" path4930 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.826064,35.63991 h 0.05191 L 33.826064,35.588 h -0.05191 z \" \ r \ n "
+ " id= \" path4928 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.722249,37.664298 v 0.155723 l 0.02595,-0.05191 0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path4926 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.852018,35.510141 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4924 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.592481,36.184938 -0.07786,0.07786 0.07786,0.07786 0.103815,-0.07786 z \" \ r \ n "
+ " id= \" path4922 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.592481,35.873493 q 0.02595,0 0.02595,0.02595 0,0.02595 -0.02595,0.02595 -0.02595,0 -0.02595,-0.02595 0,-0.02595 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4920 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.540571,35.717771 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4918 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.410803,35.821586 h 0.05191 l 0.05191,0.05191 -0.05191,0.07786 -0.05191,0.02595 z \" \ r \ n "
+ " id= \" path4916 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.514618,37.664298 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4914 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.384849,36.83378 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4912 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.332939,36.989502 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4910 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.332939,38.157419 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4908 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.281029,36.678058 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4906 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.203169,36.548289 0.02595,0.02595 0.05191,-0.05191 0.02595,-0.07786 z \" \ r \ n "
+ " id= \" path4904 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.229119,36.885687 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4902 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.787906,34.394132 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4900 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.735996,34.679623 q 0,0.129768 0.05191,0.259537 0.05191,0.103815 0.103815,0.233583 l 0.337398,-0.207629 z \" \ r \ n "
+ " id= \" path4898 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.177209,36.496382 v -0.233583 q 0,-0.20763 -0.07786,-0.389306 -0.07786,-0.181676 -0.129769,-0.389305 -0.311444,0.389305 -0.70075,0.70075 l 0.389306,0.233583 -0.02595,0.02595 -0.129769,0.02595 h -0.05191 l 0.05191,0.103815 q 0.02595,0 0.129769,-0.05191 0.129768,-0.05191 0.07786,-0.07786 l 0.181676,0.05191 q -0.02595,0.02595 0.02595,0.05191 0.05191,0 0.05191,-0.05191 z \" \ r \ n "
+ " id= \" path4896 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.099349,37.716206 -0.05191,0.02595 -0.02595,-0.02595 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4894 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.684089,36.937595 q 0,-0.02595 -0.103814,-0.07786 -0.07786,-0.07786 0.02595,-0.07786 0.05191,0 0.103815,0.07786 0.05191,0.07786 0.07786,0.103814 l 0.20763,-0.233583 h -0.363352 l 0.02595,-0.02595 -0.155723,-0.07786 v 0.20763 l -0.05191,-0.02595 h -0.02595 l 0.20763,0.181676 z \" \ r \ n "
+ " id= \" path4892 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.761949,35.276558 q 0,-0.02595 0.02595,-0.02595 0.02595,0 0.02595,0.02595 0,0.02595 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4890 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.891718,35.302508 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4888 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.969578,35.380368 q 0.05191,0.05191 0.103815,0.05191 h 0.02595 q -0.02595,-0.02595 -0.05191,-0.02595 0,0 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4886 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.047438,35.562044 -0.02595,0.02595 0.02595,0.02595 0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path4884 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.735994,35.458229 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4882 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.606225,34.887248 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4880 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.606225,34.316266 v -0.05191 q -0.02595,0 -0.05191,0 0,-0.02595 -0.02595,-0.02595 h -0.07786 q 0,0.05191 0.02595,0.07786 0.02595,0.02595 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path4878 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.372642,35.198692 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4876 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.320732,35.613951 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4874 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.139056,35.484183 h 0.155722 l -0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path4872 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.113106,38.494812 q -0.02595,0 -0.02595,-0.02595 0,-0.02595 0.02595,-0.02595 0.02595,0 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4870 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.165016,38.001691 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4868 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.346692,36.003257 0.181676,-0.155723 -0.05191,-0.129768 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0.02595,0.02595 0,0.02595 l -0.103815,-0.05191 -0.155722,0.181675 z \" \ r \ n "
+ " id= \" path4866 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.346692,38.287182 0.07786,-0.07786 H 32.26883 Z \" \ r \ n "
+ " id= \" path4864 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.528368,38.858164 h -0.155722 l 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4862 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.450508,38.728395 v -0.155722 l 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4860 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.735999,39.065793 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4858 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.735999,38.598627 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4856 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.099351,39.299376 q 0.07786,-0.05191 0,-0.129768 l 0.07786,-0.07786 -0.07786,-0.103815 -0.07786,0.103815 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4854 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.943628,38.728395 q 0.07786,0.05191 0.181676,0.20763 l 0.07786,-0.07786 q -0.129768,-0.05191 -0.259537,-0.129769 z \" \ r \ n "
+ " id= \" path4852 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.410795,39.896311 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4850 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.177212,39.792497 q 0.181676,0 0.259537,-0.02595 h -0.311445 z \" \ r \ n "
+ " id= \" path4848 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.51461,39.844407 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4846 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.59247,40.129898 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4844 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.59247,39.766546 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4842 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.696285,39.714636 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4840 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.696285,40.129895 q 0.05191,-0.02595 0.05191,-0.02595 0.02595,-0.02595 0.07786,-0.05191 -0.05191,-0.02595 -0.07786,-0.02595 0,-0.02595 -0.05191,-0.05191 z \" \ r \ n "
+ " id= \" path4838 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.748195,39.870358 q 0.07786,-0.07786 0.07786,-0.103815 H 33.72224 v 0.05191 z \" \ r \ n "
+ " id= \" path4836 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.877964,39.818448 q 0.05191,-0.02595 0.07786,-0.02595 0.02595,0 0.07786,-0.05191 -0.02595,0 -0.05191,0 0,-0.02595 -0.02595,-0.02595 h -0.07786 z \" \ r \ n "
+ " id= \" path4834 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.033686,38.676486 q 0,0.02595 0.05191,-0.02595 l 0.07786,-0.07786 Q 34.007739,38.28718 33.929878,38.001689 l -0.363352,0.363352 q -0.259537,-0.05191 -0.519074,-0.07786 -0.233583,-0.05191 -0.49312,-0.103815 l 0.259537,0.41526 q 0.285491,-0.05191 0.570981,-0.07786 0.285491,-0.05191 0.570982,-0.103814 V 38.7803 Z \" \ r \ n "
+ " id= \" path4832 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.267269,39.584865 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4830 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.422991,40.597059 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4828 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.267269,40.337522 q 0.05191,0 0.07786,-0.02595 0.02595,-0.02595 0.07786,-0.05191 -0.02595,0 -0.05191,0 0,-0.02595 -0.02595,-0.02595 h -0.07786 z \" \ r \ n "
+ " id= \" path4826 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.371084,39.636772 q 0.05191,0 0.129768,-0.07786 l -0.07786,0.02595 z \" \ r \ n "
+ " id= \" path4824 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.500852,40.077985 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4822 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.500852,40.337522 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4820 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.552762,40.441337 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4818 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.578712,40.648967 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4816 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.630622,40.752782 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4814 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.656572,39.818448 -0.07786,-0.07786 v 0.155722 z \" \ r \ n "
+ " id= \" path4812 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.682522,38.728393 q -0.103815,0.103815 -0.129768,0.181676 l 0.07786,-0.02595 0.05191,-0.07786 z \" \ r \ n "
+ " id= \" path4810 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.708472,38.235273 0.07786,-0.181676 v -0.103815 q 0,-0.05191 -0.05191,-0.02595 -0.05191,0 -0.103815,-0.02595 l -0.285491,0.181676 0.05191,0.103814 h 0.259537 q -0.07786,0 -0.129768,0.103815 0,0.05191 0,0.05191 h 0.05191 z \" \ r \ n "
+ " id= \" path4808 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.760382,38.858162 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4806 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.734432,38.209319 q 0.02595,0.05191 0,0.103815 0,0.02595 0.05191,0.02595 0.02595,0 0.103815,-0.02595 0.07786,-0.05191 0.103815,-0.07786 0,-0.181676 -0.129769,-0.363352 l -0.103815,-0.07786 0.129769,0.337398 v 0.07786 z \" \ r \ n "
+ " id= \" path4804 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.916107,38.49481 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4802 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.942057,38.728393 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4800 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.864197,40.67492 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4798 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.916107,40.493245 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4796 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 34.968017,39.974171 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4794 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.019927,38.858162 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4792 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.071837,40.623013 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4790 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.071837,40.233708 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4788 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.097787,38.598625 q 0.02595,0 0.07786,-0.05191 h -0.129768 z \" \ r \ n "
+ " id= \" path4786 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.227556,34.186496 -0.02595,-0.05191 -0.05191,-0.02595 v 0.155722 z \" \ r \ n "
+ " id= \" path4784 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.227556,40.077985 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4782 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.331371,39.948217 -0.02595,-0.02595 -0.05191,0.02595 0.05191,0.02595 z \" \ r \ n "
+ " id= \" path4780 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.383281,39.143652 0.05191,-0.07786 h -0.129768 l 0.02595,0.05191 z \" \ r \ n "
+ " id= \" path4778 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.409231,39.273421 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4776 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.487091,39.896309 -0.103815,0.103815 v 0.02595 l 0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path4774 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.590906,40.804689 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4772 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.642816,40.960411 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4770 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.720676,40.337522 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4768 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 35.590908,40.077985 q 0.05191,-0.02595 0.155722,-0.129768 l -0.05191,-0.05191 q -0.05191,0.05191 -0.07786,0.103815 0,0.02595 -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4766 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.44738,41.349717 -0.07786,0.02595 -0.05191,0.103815 v 0.05191 l 0.129769,-0.129769 z \" \ r \ n "
+ " id= \" path4764 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.42143,40.986365 0.02595,-0.02595 -0.02595,-0.02595 -0.05191,0.02595 z \" \ r \ n "
+ " id= \" path4762 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.47334,41.297809 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4760 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.654997,41.661164 -0.05191,-0.07786 -0.05191,-0.02595 v 0.129769 h 0.05191 z \" \ r \ n "
+ " id= \" path4758 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.654997,40.960414 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4756 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.654997,40.363479 q 0.05191,-0.05191 0.05191,-0.07786 h -0.129769 l 0.02595,0.05191 z \" \ r \ n "
+ " id= \" path4754 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.758812,41.713071 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4752 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.810722,40.960414 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4750 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.862632,39.636775 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4748 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.862632,39.532961 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 0.02595,-0.02595 h -0.207629 q -0.155722,0 -0.493121,0.20763 -0.311444,0.207629 -0.441212,0.311444 v 0.233584 l 0.02595,0.181675 0.07786,0.05191 q 0.285491,-0.20763 0.519074,-0.441213 0.233584,-0.233583 0.467167,-0.49312 z \" \ r \ n "
+ " id= \" path4746 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.940492,41.479488 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4744 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 36.992402,39.818451 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4742 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.148125,41.297812 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4740 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.148125,40.026081 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4738 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.200035,38.961979 h -0.155722 l 0.05191,0.02595 0.02595,0.05191 z \" \ r \ n "
+ " id= \" path4736 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.200035,35.717767 0.155722,-0.07786 q -0.05191,-0.103815 -0.129768,-0.181676 -0.05191,-0.103815 -0.155722,-0.181676 v 0.441213 z \" \ r \ n "
+ " id= \" path4734 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.251945,38.884118 q 0,0.02595 -0.02595,0.05191 0,0.02595 0,0.05191 v 0.103815 l 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path4732 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.303855,38.339091 0.02595,-0.05191 -0.02595,-0.02595 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4730 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.329805,41.713071 -0.05191,-0.07786 h -0.05191 l 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path4728 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.43362,39.74059 -0.07786,-0.103815 -0.07786,0.05191 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 0.02595,0.02595 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4726 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.43362,37.897878 -0.07786,-0.07786 -0.07786,0.07786 q -0.05191,0 -0.05191,0.02595 0,0.02595 0.05191,0.05191 0.05191,0 0.07786,0 z \" \ r \ n "
+ " id= \" path4724 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.43362,37.923828 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4722 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.667204,40.960411 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4720 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.641254,39.169606 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4718 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.641254,39.065791 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4716 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.641254,38.910069 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4714 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.511485,38.806254 q 0.05191,-0.02595 0.07786,-0.02595 0.05191,-0.02595 0.103815,-0.07786 l 0.02595,0.02595 0.02595,0.02595 0.02595,0.02595 -0.02595,-0.02595 v -0.02595 -0.02595 l -0.02595,-0.05191 h -0.259537 z \" \ r \ n "
+ " id= \" path4712 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.745069,39.325328 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4710 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 37.796979,40.38943 q 0.07786,-0.07786 0.07786,-0.103815 -0.02595,0 -0.103815,0.07786 z \" \ r \ n "
+ " id= \" path4708 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.108423,39.714634 0.129769,-0.155723 q 0.07786,0 0.07786,0 0,-0.07786 0,-0.07786 H 37.87484 Z \" \ r \ n "
+ " id= \" path4706 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.264146,40.337522 -0.103815,0.07786 0.103815,0.07786 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path4704 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.08247,40.1818 0.05191,-0.02595 q -0.07786,-0.07786 -0.103815,-0.07786 v 0.10381 z \" \ r \ n "
+ " id= \" path4702 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.34201,40.752776 v -0.129769 -0.02595 q -0.103815,0 -0.155722,0.103815 -0.02595,0.07786 -0.07786,0.129769 l 0.233584,0.207629 z \" \ r \ n "
+ " id= \" path4700 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.34201,39.143646 q 0,0.02595 0.05191,0.05191 0.05191,0 0.05191,0.02595 0.02595,0.05191 0.02595,0.129769 0,0.07786 0.02595,0.129768 l 0.129768,-0.07786 0.05191,-0.07786 v -0.02595 l 0.103815,0.05191 q 0,0.05191 -0.02595,0.07786 -0.02595,0 -0.02595,0.05191 v 0.02595 q 0.155722,0 0.181676,-0.02595 0.02595,-0.02595 0.415259,0.155722 V 39.19556 L 38.964907,39.1177 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.05191 l -0.389306,-0.103815 q -0.05191,0.05191 -0.129768,0.07786 -0.07786,0 -0.07786,0.05191 z \" \ r \ n "
+ " id= \" path4698 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.731315,40.052026 q 0,0.07786 -0.05191,0.07786 -0.02595,-0.02595 -0.129769,-0.02595 v 0.129769 h 0.07786 l 0.129769,-0.02595 0.02595,-0.05191 0.207629,0.233584 v -0.441213 l -0.207629,0.207629 q 0.02595,-0.05191 0.05191,-0.103814 0.05191,-0.07786 0,-0.07786 H 38.73131 Z \" \ r \ n "
+ " id= \" path4696 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.653455,39.558905 0.02595,-0.02595 -0.02595,-0.02595 -0.05191,0.02595 z \" \ r \ n "
+ " id= \" path4694 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.938946,39.740581 q 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4692 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.419872,40.233702 q 0.103815,-0.05191 0.02595,-0.155723 l 0.129768,-0.181676 q -0.103815,0.103815 -0.155722,0.129769 z \" \ r \ n "
+ " id= \" path4690 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 38.523687,41.739016 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4688 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.198483,40.830637 h -0.259537 l -0.363352,0.155722 -0.103815,0.181676 h 0.259537 l 0.363352,-0.181676 z \" \ r \ n "
+ " id= \" path4686 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.354205,40.103933 -0.181676,-0.155722 -0.155722,0.155722 0.155722,0.181676 z \" \ r \ n "
+ " id= \" path4684 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.45802,39.117693 q 0.103815,0.103814 0.129768,0.155722 l 0.103815,-0.05191 q -0.05191,-0.05191 -0.103815,-0.05191 -0.02595,-0.02595 -0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path4682 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.665649,39.636766 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 l 0.02595,0.02595 q 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4680 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.847325,40.000118 q -0.07786,-0.207629 -0.28549,-0.337398 -0.05191,0.103815 -0.05191,0.155722 v 0.181676 z \" \ r \ n "
+ " id= \" path4678 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 39.977094,39.013878 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4676 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 40.314492,38.365035 q -0.20763,0.07786 -0.20763,0.02595 0,-0.07786 -0.05191,-0.07786 -0.02595,0 -0.103815,0.05191 -0.05191,0.02595 -0.05191,0.05191 v 0.07786 q 0.103815,0 0.103815,-0.05191 0,-0.07786 0.233583,0.103815 H 39.97709 v 0.20763 q 0.07786,-0.103815 0.181676,-0.181676 v 0.129768 l 0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path4674 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 40.496168,37.690239 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4672 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.14188,37.923822 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4670 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 44.64876,37.378795 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4668 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 44.59685,37.794054 0.07786,0.07786 0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path4666 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.780091,36.626137 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4664 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.702231,37.949776 q -0.02595,-0.05191 -0.02595,-0.07786 0,-0.02595 -0.05191,-0.07786 l -0.02595,0.05191 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path4662 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.546509,37.664285 0.05191,0.05191 h 0.05191 l -0.05191,-0.05191 z \" \ r \ n "
+ " id= \" path4660 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.546509,37.820008 q -0.05191,-0.02595 -0.07786,-0.05191 -0.02595,-0.02595 -0.07786,-0.02595 0.02595,0.07786 0.02595,0.233584 h 0.05191 l 0.07786,-0.103815 z \" \ r \ n "
+ " id= \" path4658 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.416741,37.378795 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 q 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4656 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.286972,37.690239 0.02595,0.05191 q 0.07786,-0.07786 0.07786,-0.103814 h -0.103815 z \" \ r \ n "
+ " id= \" path4654 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.183157,37.742149 q 0.02595,0.05191 0.02595,0.129769 0.02595,0.07786 0.05191,0.129768 l 0.02595,0.02595 V 37.79406 Z \" \ r \ n "
+ " id= \" path4652 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.235067,38.650529 v 0.02595 q 0,0.02595 0.02595,0.02595 l 0.02595,-0.02595 v -0.02595 z \" \ r \ n "
+ " id= \" path4650 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.949576,39.507001 0.05191,0.05191 0.155723,-0.05191 z \" \ r \ n "
+ " id= \" path4648 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.131252,41.012316 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4646 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.027437,40.648964 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4644 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.7679,39.818445 h -0.05191 v 0.05191 l 0.07786,0.02595 v -0.103814 z \" \ r \ n "
+ " id= \" path4642 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.69004,36.807816 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4640 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.430503,36.859726 q 0,0.02595 0.02595,0.02595 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4638 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 40.963336,39.403188 0.02595,0.05191 0.02595,-0.05191 -0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4636 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.041196,41.16804 h -0.441212 l 0.233583,0.207629 z \" \ r \ n "
+ " id= \" path4634 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.093106,38.961975 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4632 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.170966,37.249031 -0.103815,-0.07786 -0.07786,0.07786 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4630 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.222876,40.752781 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4628 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.248826,36.67805 0.07786,-0.07786 -0.07786,-0.103815 -0.07786,0.103815 z \" \ r \ n "
+ " id= \" path4626 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.326686,40.908503 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4624 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.326686,36.859726 0.07786,-0.07786 -0.07786,-0.07786 z \" \ r \ n "
+ " id= \" path4622 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.508362,41.038271 -0.07786,-0.103815 -0.07786,0.103815 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4620 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.508362,40.778734 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4618 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.612177,39.584864 q 0.103815,-0.05191 0.129768,-0.103815 v -0.07786 q -0.07786,0 -0.07786,-0.02595 0,-0.02595 0.02595,0 0.02595,0 -0.02595,-0.05191 l -0.02595,0.02595 q -0.02595,0.02595 0,0.02595 0.02595,-0.02595 0.02595,0 h -0.05191 v 0.07786 l 0.02595,0.02595 v 0.05191 l -0.02595,0.02595 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4616 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.638127,40.96041 0.155722,0.05191 v -0.05191 q -0.02595,0 -0.05191,0 0,-0.02595 -0.02595,-0.02595 h -0.103815 v 0.02595 q 0,0.02595 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path4614 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 41.819802,40.88255 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4612 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.079336,41.142087 h -0.05191 q -0.02595,0 -0.05191,0.02595 0,0 -0.02595,0 l -0.05191,0.05191 0.07786,0.05191 z \" \ r \ n "
+ " id= \" path4610 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.183151,41.245902 h -0.103815 v 0.155722 z \" \ r \ n "
+ " id= \" path4608 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.157201,39.325328 q 0.02595,0 0.02595,-0.02595 l -0.02595,-0.02595 q -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4606 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.157201,38.339088 q 0.07786,-0.07786 0.07786,-0.103815 -0.07786,-0.07786 -0.103815,-0.07786 v 0.07786 q 0,0.02595 0,0.05191 0.02595,0.02595 0.02595,0.05191 z \" \ r \ n "
+ " id= \" path4604 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.261015,41.349717 q 0,-0.05191 -0.02595,-0.05191 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4602 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.36483,40.623013 h -0.155722 q 0.05191,0.05191 0.07786,0.05191 z \" \ r \ n "
+ " id= \" path4600 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.36483,39.792495 h -0.05191 v 0.02595 l 0.02595,0.02595 q -0.02595,0 -0.07786,0.05191 l 0.07786,-0.02595 0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path4598 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.468636,41.453531 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4596 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.520546,41.349717 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4594 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.286963,38.209319 q 0.20763,-0.103815 0.311444,-0.20763 v -0.05191 l -0.311444,0.233583 z \" \ r \ n "
+ " id= \" path4592 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.624361,41.297809 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4590 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.676271,40.38943 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4588 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.702221,37.223078 0.05191,0.05191 v -0.02595 q 0,-0.05191 0,-0.05191 0.02595,-0.02595 0.02595,-0.07786 h 0.07786 q -0.02595,0 -0.05191,-0.02595 0,-0.02595 -0.02595,-0.02595 h -0.02595 z \" \ r \ n "
+ " id= \" path4586 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.728171,39.636772 0.05191,0.05191 v -0.02595 l -0.02595,-0.02595 h 0.02595 l 0.02595,-0.02595 -0.02595,-0.02595 h -0.02595 v 0.02595 z \" \ r \ n "
+ " id= \" path4584 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.806031,40.077985 -0.05191,0.02595 v 0.02595 l 0.02595,0.02595 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4582 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.883891,39.221513 -0.02595,-0.02595 v -0.02595 q 0,0 -0.02595,0.05191 l -0.103815,-0.02595 v 0.07786 h 0.02595 l 0.07786,-0.05191 z \" \ r \ n "
+ " id= \" path4580 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.935801,36.574236 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4578 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.987711,39.870356 h -0.05191 l 0.02595,0.02595 v -0.02595 z \" \ r \ n "
+ " id= \" path4576 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 42.987711,34.809384 q -0.05191,-0.05191 -0.07786,-0.05191 v 0.129769 z \" \ r \ n "
+ " id= \" path4574 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 43.039621,40.052032 q 0.07786,-0.07786 0.07786,-0.103815 v -0.02595 l -0.07786,0.02595 -0.02595,0.02595 0.02595,0.05191 z \" \ r \ n "
+ " id= \" path4572 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 43.221297,40.700874 h 0.02595 v -0.02595 h -0.02595 q -0.07786,0.07786 -0.07786,0.103815 l 0.02595,0.02595 0.02595,-0.02595 V 40.67492 Z \" \ r \ n "
+ " id= \" path4570 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 43.402973,39.844402 q 0.155722,-0.05191 0.233583,-0.129768 -0.05191,-0.02595 -0.181676,0.05191 -0.103814,0.05191 -0.155722,0.05191 l -0.07786,0.05191 v 0.155722 q 0.05191,0 0.129769,-0.05191 0.07786,-0.07786 0.05191,-0.129769 z \" \ r \ n "
+ " id= \" path4568 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 43.688464,39.662726 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4566 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 43.740374,37.949782 q 0.02595,0 0.02595,-0.02595 0,-0.02595 -0.02595,-0.02595 l -0.02595,0.02595 q 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4564 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 44.259448,38.468856 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4562 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 44.311358,38.572671 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 0,0.02595 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4560 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 44.882339,38.98793 q 0.07786,-0.05191 0.181676,-0.20763 -0.259537,-0.103814 -0.389306,-0.129768 l 0.181676,-0.570981 -0.415259,0.622888 q 0.233583,0.103815 0.441213,0.285491 z \" \ r \ n "
+ " id= \" path4558 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.271652,39.299382 -0.02595,-0.05191 h -0.129769 q 0.05191,0.103815 -0.02595,0.20763 -0.07786,0.07786 -0.07786,0.181675 v 0.07786 q 0,0.129768 0.07786,0.129768 h 0.02595 l 0.02595,-0.02595 q 0.02595,-0.02595 0.02595,0 0,0 -0.02595,0 l -0.02595,-0.02595 -0.02595,-0.02595 -0.02595,-0.05191 0.02595,-0.103815 q 0.02595,-0.103815 0,-0.20763 l 0.129768,-0.103815 z \" \ r \ n "
+ " id= \" path4556 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.323562,39.766549 h -0.05191 0.02595 v 0.02595 z \" \ r \ n "
+ " id= \" path4554 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.349512,38.936031 h -0.155723 q 0.07786,0.07786 0.103815,0.07786 z \" \ r \ n "
+ " id= \" path4552 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.531187,39.610827 v 0.02595 h -0.02595 l 0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4550 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.583097,39.558917 -0.02595,-0.02595 v -0.05191 h -0.07786 q 0.05191,0.103815 0.05191,0.129769 z \" \ r \ n "
+ " id= \" path4548 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.686912,36.833779 h -0.07786 l 0.02595,0.02595 0.02595,-0.02595 z \" \ r \ n "
+ " id= \" path4546 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.868588,36.288751 h 0.05191 l 0.05191,-0.02595 v -0.05191 h -0.05191 l -0.05191,0.02595 z \" \ r \ n "
+ " id= \" path4544 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.842638,39.273427 -0.05191,0.05191 0.02595,0.02595 h 0.02595 z \" \ r \ n "
+ " id= \" path4542 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 45.868588,38.961982 0.07786,-0.129768 0.02595,-0.02595 h -0.05191 q -0.02595,0 -0.02595,0.07786 h -0.02595 q -0.07786,0.07786 -0.07786,0.155722 v 0.02595 h 0.07786 z \" \ r \ n "
+ " id= \" path4540 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 46.154078,38.624584 h -0.02595 l -0.02595,0.02595 V 38.7803 h 0.05191 z \" \ r \ n "
+ " id= \" path4538 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 46.257893,37.015455 h 0.05191 v -0.02595 l -0.02595,-0.02595 h -0.02595 l -0.05191,0.103815 q 0.05191,0 0.05191,0.02595 z \" \ r \ n "
+ " id= \" path4536 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 46.335753,38.832214 q 0,-0.02595 -0.02595,-0.02595 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4534 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 46.361703,37.145223 v -0.02595 z \" \ r \ n "
+ " id= \" path4532 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 46.387653,37.093313 h 0.02595 -0.07786 0.02595 v 0.02595 z \" \ r \ n "
+ " id= \" path4530 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.11938,36.366609 0.02595,-0.07786 h 0.05191 v 0.07786 z \" \ r \ n "
+ " id= \" path4528 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.352963,35.795628 v -0.07786 h 0.07786 v 0.07786 z \" \ r \ n "
+ " id= \" path4526 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 25.884231,34.497943 v 0.07786 l -0.07786,-0.02595 0.02595,-0.05191 z \" \ r \ n "
+ " id= \" path4524 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.249148,36.911637 -0.155722,-0.233583 h 0.103815 l 0.103815,0.02595 z \" \ r \ n "
+ " id= \" path4522 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.065907,35.95135 v 0.07786 h -0.07786 v -0.07786 z \" \ r \ n "
+ " id= \" path4520 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.482731,36.288748 h -0.155722 l 0.02595,-0.155722 0.129768,0.02595 z \" \ r \ n "
+ " id= \" path4518 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.143768,36.236838 0.02595,0.103815 -0.259537,-0.05191 0.155722,-0.129768 z \" \ r \ n "
+ " id= \" path4516 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.555897,38.936023 q 0.129769,0.02595 0.233583,0.07786 0.129769,0.02595 0.259537,0 l -0.259537,0.207629 z \" \ r \ n "
+ " id= \" path4514 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.230693,38.598625 -0.129768,-0.155723 0.129768,-0.02595 0.155722,0.02595 -0.05191,0.103815 z \" \ r \ n "
+ " id= \" path4512 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.139073,37.949782 v -0.07786 l -0.07786,-0.02595 v 0.07786 z \" \ r \ n "
+ " id= \" path4510 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.126878,39.740587 q 0.181676,0.129769 0.363352,0.285491 l -0.07786,0.20763 -0.337398,-0.20763 z \" \ r \ n "
+ " id= \" path4508 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.282601,40.700874 h 0.07786 v 0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4506 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.594045,38.468856 q -0.155722,-0.103815 -0.311444,-0.20763 -0.155723,-0.103814 -0.311445,-0.233583 l 0.07786,-0.207629 0.20763,0.28549 h 0.129768 l 0.07786,-0.07786 0.259537,0.337398 z \" \ r \ n "
+ " id= \" path4504 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.594045,39.68868 -0.07786,-0.02595 v -0.07786 l 0.07786,0.02595 z \" \ r \ n "
+ " id= \" path4502 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.842953,35.665857 -0.103815,0.389305 -0.05191,-0.545028 0.207629,-0.155722 0.103815,0.311445 z \" \ r \ n "
+ " id= \" path4500 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.568091,37.456662 0.05191,-0.181676 -0.285491,0.207629 0.02595,0.233584 q 0.103814,-0.103815 0.207629,-0.259537 z \" \ r \ n "
+ " id= \" path4498 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.801675,36.989495 q -0.155723,0 -0.20763,-0.02595 l 0.181676,0.233584 q 0,-0.155722 0.02595,-0.20763 z \" \ r \ n "
+ " id= \" path4496 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.957397,37.404754 0.05191,-0.155722 -0.05191,-0.103815 -0.05191,0.155723 z \" \ r \ n "
+ " id= \" path4494 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.465842,34.471986 q -0.103815,0.129769 -0.233584,0.233584 L 29.10249,34.549847 q 0.155722,-0.07786 0.363352,-0.07786 z \" \ r \ n "
+ " id= \" path4492 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.78948,40.000124 q 0.02595,-0.05191 0.02595,-0.181676 h 0.103815 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 z \" \ r \ n "
+ " id= \" path4490 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 25.702555,34.939153 h 0.103815 l 0.07786,0.02595 v 0.103814 q 0,0.02595 0,0.05191 -0.02595,0.02595 -0.02595,0.05191 z \" \ r \ n "
+ " id= \" path4488 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.467407,33.511699 h -0.07786 l 0.02595,-0.07786 h 0.05191 z \" \ r \ n "
+ " id= \" path4486 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.830759,35.146783 0.02595,-0.07786 0.07786,0.02595 -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4484 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.429259,34.471986 q 0,-0.02595 0.02595,-0.05191 0,-0.02595 0,-0.05191 h 0.103814 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 l -0.233583,0.155722 z \" \ r \ n "
+ " id= \" path4482 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.412369,40.337522 h 0.07786 v 0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4480 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.749767,40.077985 h 0.07786 v 0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4478 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.256647,40.311569 q -0.02595,0.07786 -0.02595,0.28549 L 30.97116,40.285615 h 0.129769 z \" \ r \ n "
+ " id= \" path4476 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.363592,36.366606 q -0.02595,0.05191 -0.02595,0.181676 L 27.00024,36.314699 Z \" \ r \ n "
+ " id= \" path4474 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 25.884231,40.000124 h -0.07786 v -0.07786 h 0.07786 z \" \ r \ n "
+ " id= \" path4472 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.426129,39.818448 v 0.07786 l -0.07786,-0.02595 v -0.05191 z \" \ r \ n "
+ " id= \" path4470 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.140638,39.584865 v 0.103815 l -0.02595,0.155722 -0.103815,-0.05191 -0.05191,-0.07786 z \" \ r \ n "
+ " id= \" path4468 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.80324,39.68868 0.259537,0.337398 0.155722,-0.129769 0.311444,0.41526 q 0,0.155722 -0.07786,0.259537 -0.129768,-0.285491 -0.311444,-0.41526 l -0.441213,0.337399 -0.233583,-0.181676 q 0.129768,0 0.259537,-0.02595 0.129768,-0.02595 0.259537,-0.05191 -0.05191,-0.129769 -0.155723,-0.20763 -0.103814,-0.103815 -0.207629,-0.181676 z \" \ r \ n "
+ " id= \" path4466 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.949898,38.520763 v 0.07786 l -0.07786,-0.02595 v -0.05191 z \" \ r \ n "
+ " id= \" path4464 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.559027,36.444467 q 0.103815,0.103815 0.20763,0.181676 0.103815,0.07786 0.233583,0.155723 l -0.02595,0.129768 v 0.07786 l -0.233584,-0.259537 -0.28549,-0.07786 -0.181676,0.02595 z \" \ r \ n "
+ " id= \" path4462 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.078101,36.833773 q 0.02595,-0.05191 0.02595,-0.181676 h 0.103815 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 z \" \ r \ n "
+ " id= \" path4460 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.247583,36.704004 v 0.07786 l -0.02595,0.103814 Q 26.143773,36.704002 25.98805,36.54828 Z \" \ r \ n "
+ " id= \" path4458 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.794176,37.508569 0.07786,0.02595 -0.02595,0.05191 h -0.05191 z \" \ r \ n "
+ " id= \" path4456 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.206305,39.948217 0.207629,0.285491 -0.07786,0.233583 q -0.05191,-0.05191 -0.103815,-0.155722 -0.02595,-0.129769 -0.02595,-0.181676 z \" \ r \ n "
+ " id= \" path4454 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.012435,39.247467 0.02595,-0.07786 0.07786,0.02595 -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4452 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.920814,30.812515 q -0.07786,0.02595 -0.233583,0.02595 l 0.441213,0.20763 q -0.259537,0.07786 -0.41526,0.181676 l 0.285491,0.181676 q -0.07786,0.155722 -0.181676,0.259537 l -0.233583,-0.155722 q 0,-0.363352 0.07786,-0.752658 l 0.259537,-0.181676 z \" \ r \ n "
+ " id= \" path4450 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.529943,33.122394 q 0.07786,-0.07786 0.155723,-0.155722 0.07786,-0.07786 0.181675,-0.129769 v 0.20763 l 0.259537,-0.02595 q 0.07786,0.155722 0.07786,0.311445 l 0.233583,-0.155723 -0.05191,0.181676 q 0,0.129769 0.02595,0.285491 0.02595,0.155722 0.103815,0.259537 l 0.181676,-0.129769 -0.20763,-0.103814 0.103815,-0.259537 0.233583,0.519074 0.233584,-0.02595 0.02595,0.103815 -0.103815,0.207629 -0.07786,0.05191 v -0.05191 l 0.02595,-0.129768 -0.908379,-0.259537 q 0.207629,0 0.28549,-0.02595 l -0.155722,-0.415259 -0.389305,-0.103815 0.233583,-0.155722 z \" \ r \ n "
+ " id= \" path4448 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.358897,36.418514 h 0.49312 l -0.02595,0.181676 0.311445,0.103814 v -0.129768 l -0.02595,-0.129769 -0.20763,0.155723 0.05191,-0.20763 q -0.20763,0 -0.389306,-0.07786 l 0.129769,-0.49312 -0.622889,-0.05191 q 0,0.155723 0.07786,0.363352 0.103815,0.181676 0.20763,0.285491 z \" \ r \ n "
+ " id= \" path4446 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.424563,40.1818 q 0.181676,0.07786 0.285491,0.233583 l -0.129768,0.103815 -0.129769,-0.181676 z \" \ r \ n "
+ " id= \" path4444 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.203174,39.792501 -0.155722,-0.02595 0.02595,-0.155722 0.129768,0.02595 z \" \ r \ n "
+ " id= \" path4442 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.813869,38.416955 v 0.07786 l -0.07786,-0.02595 v -0.05191 z \" \ r \ n "
+ " id= \" path4440 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.424563,37.897881 v 0.545027 l -0.129768,-0.07786 h -0.20763 l -0.07786,0.05191 q 0.155722,0.129768 0.311445,0.259537 0.181675,0.129768 0.311444,0.28549 0.129768,-0.02595 0.233583,-0.07786 0.103815,-0.07786 0.181676,-0.155722 -0.207629,-0.02595 -0.389305,0 -0.07786,-0.441213 -0.233584,-0.830518 z \" \ r \ n "
+ " id= \" path4438 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.462711,38.001695 -0.259537,-0.155722 0.233584,0.337398 0.02595,-0.07786 z \" \ r \ n "
+ " id= \" path4436 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.229128,38.261232 -0.02595,0.103815 v 0.103815 l 0.233584,-0.181676 -0.103815,-0.02595 z \" \ r \ n "
+ " id= \" path4434 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.685666,36.652103 0.181675,0.233583 -0.181675,0.155723 0.337398,0.259537 -0.05191,0.05191 q -0.103815,0.02595 -0.207629,0.05191 -0.07786,0.02595 -0.181676,0.02595 l 0.103815,-0.259537 -0.181676,-0.07786 z \" \ r \ n "
+ " id= \" path4432 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.142203,33.61552 v -0.07786 h 0.07786 v 0.07786 z \" \ r \ n "
+ " id= \" path4430 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.618434,38.31314 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 l -0.233583,0.155722 q 0.02595,-0.05191 0.02595,-0.181676 z \" \ r \ n "
+ " id= \" path4428 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.516184,34.238409 v -0.07786 h 0.07786 v 0.07786 z \" \ r \ n "
+ " id= \" path4426 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.960527,34.186499 q -0.181676,0.07786 -0.285491,0.233583 0.20763,0.20763 0.441213,0.337398 0.233584,0.103815 0.493121,0.233583 l -0.311445,0.20763 v -0.181676 q -0.311444,0 -0.648842,-0.129768 0.103815,-0.07786 0.259537,-0.07786 -0.20763,-0.155722 -0.337398,-0.181675 0.05191,-0.129769 0.103814,-0.233584 0.02595,-0.103815 0.07786,-0.233583 -0.103815,-0.103815 -0.181676,-0.259537 l 0.389305,0.181676 z \" \ r \ n "
+ " id= \" path4424 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.322314,33.797193 0.155722,0.155722 -0.155722,-0.02595 -0.155722,-0.155723 z \" \ r \ n "
+ " id= \" path4422 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.178786,34.290313 v 0.181676 l -0.337398,-0.207629 -0.181676,0.28549 -0.103815,-0.363351 q -0.129768,0.207629 -0.285491,0.363351 l -0.311444,-0.648842 q -0.103815,0.05191 -0.181676,0.129768 -0.07786,0.07786 -0.181676,0.129769 l -0.129768,-0.181676 q 0.103814,-0.05191 0.181676,-0.103815 0.103814,-0.07786 0.233583,-0.129768 l 0.415259,0.415259 q 0.181676,0 0.337398,-0.07786 -0.02595,-0.103815 -0.02595,-0.363352 l 0.129769,0.181676 0.285491,0.181676 0.129768,0.02595 z \" \ r \ n "
+ " id= \" path4420 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.868907,34.238403 v 0.07786 l -0.07786,-0.02595 v -0.05191 z \" \ r \ n "
+ " id= \" path4418 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.90862,34.446033 q 0.129768,0 0.259537,0 0.103815,0 0.233583,0.02595 v 0.07786 z \" \ r \ n "
+ " id= \" path4416 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.531508,31.798755 q -0.02595,0.05191 -0.02595,0.181676 -0.155722,-0.155722 -0.233583,-0.337398 z \" \ r \ n "
+ " id= \" path4414 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.882666,32.499505 v 0.02595 h -0.02595 z \" \ r \ n "
+ " id= \" path4412 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.920814,31.824709 v -0.07786 l 0.07786,0.02595 v 0.07786 z \" \ r \ n "
+ " id= \" path4410 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 28.012435,32.525459 27.90862,32.836903 27.88267,32.655227 V 32.525459 Z \" \ r \ n "
+ " id= \" path4408 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.972721,32.39569 q -0.02595,0.05191 -0.02595,0.181676 -0.07786,-0.181676 -0.233584,-0.337398 z \" \ r \ n "
+ " id= \" path4406 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.439888,32.032339 0.181676,-0.129769 q 0.07786,0.07786 0.07786,0.181676 z \" \ r \ n "
+ " id= \" path4404 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.232258,35.769671 q 0,0.181676 0.07786,0.285491 0.285491,0.05191 0.519074,0.155722 0.259537,0.07786 0.545028,0.155722 l 0.155722,0.337398 -0.648842,-0.415259 h -0.389306 q -0.233583,-0.259537 -0.49312,-0.49312 l 0.103815,-0.02595 z \" \ r \ n "
+ " id= \" path4402 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.424563,37.352847 0.129769,0.05191 q 0.285491,0.181676 0.363352,0.467167 l 0.233583,-0.181676 q -0.233583,-0.259537 -0.49312,-0.49312 z \" \ r \ n "
+ " id= \" path4400 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.386415,36.704004 h 0.07786 l 0.02595,-0.05191 -0.07786,-0.02595 z \" \ r \ n "
+ " id= \" path4398 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 34.189415,37.897875 33.903924,37.79406 q 0,0.05191 -0.02595,0.103815 -0.02595,0.05191 -0.05191,0.103814 0.155722,0.155723 0.233583,0.259537 l -0.155722,-0.337398 q 0.07786,-0.02595 0.285491,-0.02595 z \" \ r \ n "
+ " id= \" path4396 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.929878,38.442902 q -0.02595,0 -0.05191,0 -0.02595,-0.02595 -0.05191,-0.02595 h -0.07786 l -0.05191,0.181676 z \" \ r \ n "
+ " id= \" path4394 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.644387,36.937588 v -0.05191 q -0.103815,-0.02595 -0.311444,-0.02595 0.103815,0.07786 0.311444,0.07786 z \" \ r \ n "
+ " id= \" path4392 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.737573,35.562042 -0.02595,0.07786 h 0.07786 v -0.07786 z \" \ r \ n "
+ " id= \" path4390 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.282601,36.470421 v -0.07786 l -0.07786,-0.02595 v 0.07786 z \" \ r \ n "
+ " id= \" path4388 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.543703,35.847532 0.02595,-0.07786 h 0.07786 l -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4386 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.360462,35.639903 h 0.155722 l 0.05191,-0.05191 q -0.181676,-0.207629 -0.441213,-0.389305 0.02595,0.129768 0.07786,0.233583 0.07786,0.103815 0.155722,0.20763 z \" \ r \ n "
+ " id= \" path4384 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.50399,36.107069 q 0.02595,-0.05191 0.02595,-0.181675 h 0.103815 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 z \" \ r \ n "
+ " id= \" path4382 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.763527,33.537653 q -0.233584,0.07786 -0.493121,0.07786 -0.103814,0 -0.311444,-0.05191 l -0.05191,-0.07786 q 0.103814,0.02595 0.207629,0.02595 0.103815,0 0.20763,0 L 30.08873,33.200255 q 0.181676,0.05191 0.337399,0.07786 0.181675,0.02595 0.337398,0.129769 z \" \ r \ n "
+ " id= \" path4380 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.919249,35.068921 q 0,0.233584 -0.103815,0.363352 -0.259537,-0.155722 -0.415259,-0.415259 l -0.233583,0.181676 q 0.05191,0.20763 0.07786,0.415259 0.05191,0.181676 0.129768,0.389306 l -0.337398,-0.20763 -0.07786,0.20763 -0.155722,-0.41526 h 0.181676 l 0.181676,0.02595 -0.103815,-0.519074 -0.233584,-0.155722 q 0.20763,-0.103815 0.493121,-0.155722 0.05191,0.103815 0.129768,0.181676 0.07786,0.07786 0.155722,0.155722 l 0.103815,-0.233583 q -0.103815,-0.05191 -0.207629,-0.129769 -0.103815,-0.07786 -0.181676,-0.155722 l 0.49312,0.155722 -0.07786,0.233583 z \" \ r \ n "
+ " id= \" path4378 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.517749,33.355977 0.02595,-0.07786 h 0.07786 l -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4376 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.244453,32.473552 h 0.07786 v 0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4374 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.282601,34.861292 0.49312,0.05191 v 0.129769 q 0,0.05191 -0.05191,0.155722 l -0.07786,0.07786 -0.103814,-0.363352 -0.103815,0.233584 z \" \ r \ n "
+ " id= \" path4372 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.713184,33.849098 q 0,0.207629 -0.07786,0.363351 -0.259537,0 -0.389305,-0.103814 l 0.28549,-0.311445 z \" \ r \ n "
+ " id= \" path4370 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.619999,34.627709 h 0.07786 l -0.02595,0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4368 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.476471,35.562042 v -0.05191 q -0.103815,-0.02595 -0.311445,-0.02595 0.103815,0.07786 0.311445,0.07786 z \" \ r \ n "
+ " id= \" path4366 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.659712,36.158977 h -0.07786 l -0.05191,0.363352 0.363352,-0.05191 q -0.07786,-0.155722 -0.233583,-0.311444 z \" \ r \ n "
+ " id= \" path4364 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 31.49023,36.496375 V 35.89944 h -0.103815 l -0.103814,0.02595 z \" \ r \ n "
+ " id= \" path4362 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.827628,34.653663 q 0,-0.05191 0.02595,-0.129768 0.05191,-0.103815 0.07786,-0.155722 l 0.103815,-0.05191 -0.103815,0.311445 q 0.155722,-0.103815 0.415259,-0.181676 l 0.181676,0.259537 -0.155722,0.259537 -0.545028,-0.103815 z \" \ r \ n "
+ " id= \" path4360 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.957397,35.172737 0.103815,0.155722 -0.337399,0.20763 -0.103814,-0.129768 z \" \ r \ n "
+ " id= \" path4358 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.050582,32.551414 h 0.103815 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 l -0.233583,0.155723 v -0.103815 z \" \ r \ n "
+ " id= \" path4356 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.751332,32.629274 q 0.02595,0 0.02595,0.02595 0.02595,0 0.05191,0 v 0.103815 q 0,0.02595 -0.02595,0.05191 0,0 0,0.02595 L 29.64752,32.62927 Z \" \ r \ n "
+ " id= \" path4354 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.336073,32.1102 q -0.155722,-0.02595 -0.311444,-0.155722 l 0.155722,-0.129769 0.103815,0.129769 z \" \ r \ n "
+ " id= \" path4352 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.958965,32.421644 0.07786,0.02595 -0.02595,0.07786 -0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path4350 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.180354,32.707135 0.20763,0.285491 0.103814,-0.259537 0.02595,0.129768 -0.02595,0.181676 Q 29.258215,32.992623 29.1544,32.888811 v -0.07786 z \" \ r \ n "
+ " id= \" path4348 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.65815,35.458227 0.415259,-0.07786 -0.20763,-0.103815 -0.259537,-0.02595 z \" \ r \ n "
+ " id= \" path4346 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.165029,35.977301 0.233584,0.05191 0.02595,-0.129768 v -0.103815 z \" \ r \ n "
+ " id= \" path4344 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.983353,36.081116 v 0.441213 l 0.129769,-0.441213 -0.155722,-0.233584 -0.311445,0.389306 z \" \ r \ n "
+ " id= \" path4342 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.268844,35.717764 q -0.02595,0 -0.05191,0 0,-0.02595 -0.02595,-0.02595 h -0.103815 q 0,0.02595 -0.02595,0.05191 0,0 0,0.02595 v 0.103815 z \" \ r \ n "
+ " id= \" path4340 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.281038,35.613949 0.02595,0.129769 0.181676,-0.129769 -0.07786,-0.103815 -0.103815,-0.05191 z \" \ r \ n "
+ " id= \" path4338 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.384853,39.169606 0.07786,0.02595 v -0.07786 l -0.05191,-0.02595 z \" \ r \ n "
+ " id= \" path4336 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.021501,39.377235 q -0.181675,-0.155722 -0.28549,-0.363351 v 0.181676 q 0,0.05191 0.05191,0.207629 0.07786,0.155722 0.129769,0.20763 z \" \ r \ n "
+ " id= \" path4334 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.384853,38.806254 q 0.07786,0.07786 0.233584,0.129769 0.181675,-0.103815 0.363351,-0.285491 -0.337398,0.05191 -0.596935,0.155722 z \" \ r \ n "
+ " id= \" path4332 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.490233,39.48105 -0.02595,-0.129768 0.07786,-0.181676 0.155722,0.02595 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path4330 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.818567,35.536088 v -0.07786 h 0.07786 l -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4328 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.636891,35.587998 -0.02595,0.155723 -0.05191,-0.103815 0.02595,-0.155722 z \" \ r \ n "
+ " id= \" path4326 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 25.183484,35.302508 -0.02595,0.07786 h -0.05191 v -0.07786 z \" \ r \ n "
+ " id= \" path4324 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 25.546836,35.95135 Q 25.36516,35.795628 25.261345,35.587998 l 0.07786,-0.07786 h 0.129768 z \" \ r \ n "
+ " id= \" path4322 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.039956,35.042971 0.02595,-0.07786 0.05191,0.02595 v 0.07786 z \" \ r \ n "
+ " id= \" path4320 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.713187,35.354415 q -0.155722,0 -0.259537,-0.07786 l 0.181676,-0.129768 0.05191,0.07786 z \" \ r \ n "
+ " id= \" path4318 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.76666,35.899443 0.02595,-0.155722 q 0.103814,0.05191 0.155722,0.155722 l -0.181676,0.129768 z \" \ r \ n "
+ " id= \" path4316 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.46741,35.691813 -0.02595,0.07786 h -0.05191 v -0.07786 z \" \ r \ n "
+ " id= \" path4314 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.220067,35.95135 -0.207629,-0.467166 h 0.103814 q 0.20763,0.103814 0.285491,0.207629 z \" \ r \ n "
+ " id= \" path4312 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.012438,35.89944 0.02595,0.103815 -0.28549,-0.05191 0.181675,-0.155722 z \" \ r \ n "
+ " id= \" path4310 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.675039,35.795625 v 0.07786 h -0.07786 v -0.07786 z \" \ r \ n "
+ " id= \" path4308 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.117817,33.745283 -0.07786,0.05191 -0.155722,-0.181676 H 26.014 l 0.155722,0.02595 z \" \ r \ n "
+ " id= \" path4306 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.97429,33.745283 q -0.02595,0.05191 -0.02595,0.181676 l -0.337398,-0.233584 z \" \ r \ n "
+ " id= \" path4304 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.00024,33.070487 q -0.181676,0 -0.28549,-0.07786 l 0.129768,-0.02595 q 0.05191,0 0.103815,0.02595 0.02595,0 0.07786,0 z \" \ r \ n "
+ " id= \" path4302 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.155962,33.174305 q 0.05191,0.02595 0.181676,0.02595 l -0.207629,0.181676 v -0.103815 q 0,-0.02595 0.02595,-0.05191 0,-0.02595 0,-0.05191 z \" \ r \ n "
+ " id= \" path4300 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.455213,33.148355 v 0.07786 l -0.07786,-0.02595 v -0.07786 z \" \ r \ n "
+ " id= \" path4298 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.400175,38.987937 -0.07786,-0.02595 v -0.07786 l 0.07786,0.02595 z \" \ r \ n "
+ " id= \" path4296 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.647518,39.013887 h -0.155723 l -0.129768,-0.05191 0.181676,-0.129768 0.07786,0.07786 z \" \ r \ n "
+ " id= \" path4294 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.777286,39.117702 q -0.103815,0.129768 -0.233583,0.233583 L 29.439888,39.19556 Q 29.59561,39.1177 29.777286,39.1177 Z \" \ r \ n "
+ " id= \" path4292 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.920814,39.299377 h 0.07786 l -0.02595,0.07786 h -0.05191 z \" \ r \ n "
+ " id= \" path4290 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.192545,38.442905 0.02595,0.20763 -0.05191,0.129768 q -0.07786,-0.103814 -0.07786,-0.28549 l 0.05191,-0.129769 z \" \ r \ n "
+ " id= \" path4288 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.50399,39.377238 q 0.129768,0.155723 0.233583,0.41526 l -0.20763,-0.05191 -0.02595,-0.181676 z \" \ r \ n "
+ " id= \" path4286 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.50399,39.922266 h 0.103814 q 0.02595,0 0.05191,0.02595 0.02595,0 0.05191,0 -0.02595,0.05191 -0.02595,0.181676 z \" \ r \ n "
+ " id= \" path4284 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.739138,39.688683 q 0.181676,-0.129769 0.389306,-0.129769 l 0.103814,0.05191 v 0.07786 l -0.02595,0.103815 -0.155723,-0.20763 q 0,0.02595 -0.02595,0.129769 -0.02595,0.07786 -0.05191,0.07786 -0.02595,0 -0.103814,-0.02595 -0.07786,-0.05191 -0.129769,-0.07786 z \" \ r \ n "
+ " id= \" path4282 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.256647,39.325331 v -0.07786 l 0.07786,0.02595 v 0.07786 z \" \ r \ n "
+ " id= \" path4280 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.374221,39.195563 -0.02595,0.07786 h -0.07786 l 0.02595,-0.07786 z \" \ r \ n "
+ " id= \" path4278 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.362027,36.418517 q -0.02595,0.05191 -0.05191,0.103815 -0.02595,0.05191 -0.02595,0.103814 -0.155722,-0.02595 -0.311445,0 -0.155722,0 -0.311444,-0.05191 l 0.363352,-0.363352 q 0.02595,0.07786 0.02595,0.233583 h 0.155723 z \" \ r \ n "
+ " id= \" path4276 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.479601,38.728396 q -0.02595,0.181676 -0.129768,0.363352 0.05191,-0.02595 0.129768,-0.05191 0.07786,-0.02595 0.155722,-0.02595 v 0.103815 q 0,0.07786 -0.05191,0.181675 l -0.07786,0.05191 -0.389306,-0.363352 q 0.155723,0 0.20763,-0.02595 l -0.103815,-0.259537 h 0.129769 z \" \ r \ n "
+ " id= \" path4274 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.284166,38.910072 -0.129769,0.07786 -0.129768,-0.155722 q 0.103815,-0.05191 0.155722,-0.05191 h 0.20763 z \" \ r \ n "
+ " id= \" path4272 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.816999,38.858162 q -0.02595,0.05191 -0.02595,0.181675 l -0.233583,-0.337398 z \" \ r \ n "
+ " id= \" path4270 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.557462,38.235273 q 0.129769,0.02595 0.259537,0.155722 l -0.181676,0.07786 h -0.155722 z \" \ r \ n "
+ " id= \" path4268 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.90862,38.572671 h 0.103815 q 0.02595,0 0.05191,0.02595 0,0 0.02595,0 v 0.103814 q 0,0.02595 0,0.05191 -0.02595,0 -0.02595,0.02595 z \" \ r \ n "
+ " id= \" path4266 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.375786,38.390995 h -0.07786 v -0.07786 h 0.07786 z \" \ r \ n "
+ " id= \" path4264 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 24.275102,38.053597 h 0.05191 v 0.07786 l -0.07786,-0.02595 z \" \ r \ n "
+ " id= \" path4262 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 25.780416,32.39569 25.59874,32.265922 h 0.259537 q 0.05191,0 0.129769,0.02595 0.07786,0.02595 0.129768,0.05191 l -0.05191,0.103815 z \" \ r \ n "
+ " id= \" path4260 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.169722,31.980431 h 0.07786 v 0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4258 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 25.572787,33.018579 q -0.02595,0.07786 -0.129769,0.181676 l -0.129768,-0.181676 0.103815,-0.02595 z \" \ r \ n "
+ " id= \" path4256 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.50712,32.291876 0.20763,0.07786 0.129768,0.155722 -0.181676,-0.05191 z \" \ r \ n "
+ " id= \" path4254 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.074971,38.98793 0.752657,-0.103815 0.20763,0.415259 0.155722,0.02595 h 0.181676 q -0.155722,-0.207629 -0.311444,-0.389305 -0.129769,-0.20763 -0.20763,-0.441213 l 0.49312,0.363352 0.155722,0.519073 -0.389305,0.233584 q 0,-0.07786 -0.02595,-0.155722 -0.02595,-0.07786 -0.05191,-0.129769 l -0.20763,0.02595 -0.103815,-0.311445 z \" \ r \ n "
+ " id= \" path4252 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.282601,37.09331 q 0,0.129768 -0.05191,0.233583 -0.02595,0.07786 -0.07786,0.181676 0,-0.285491 0.129769,-0.49312 z \" \ r \ n "
+ " id= \" path4250 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.049017,37.482615 v 0.07786 h -0.07786 l 0.02595,-0.07786 z \" \ r \ n "
+ " id= \" path4248 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.89173,36.314699 -0.49312,-0.103815 q 0.129768,0 0.233583,0 0.129768,0 0.259537,0.02595 z \" \ r \ n "
+ " id= \" path4246 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 30.50399,37.352847 q -0.07786,0.155722 -0.181676,0.259537 l -0.155722,-0.337398 0.181675,-0.103815 z \" \ r \ n "
+ " id= \" path4244 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.128444,38.339088 q 0.181675,0.07786 0.415259,0.07786 0.129768,-0.02595 0.28549,-0.181676 -0.02595,0.103815 -0.129768,0.311444 0.155722,0.05191 0.233583,0.129769 -0.207629,-0.02595 -0.415259,-0.07786 -0.181676,-0.07786 -0.389305,-0.129769 l -0.05191,-0.155722 0.05191,-0.233583 0.07786,-0.05191 -0.20763,-0.285491 q -0.07786,0.20763 -0.07786,0.41526 l -0.05191,-0.181676 0.02595,-0.233584 0.233584,0.02595 0.155722,0.103815 z \" \ r \ n "
+ " id= \" path4242 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.362027,38.235273 0.02595,-0.07786 h 0.07786 l -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4240 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.061212,36.470421 0.311444,0.596935 q 0.07786,-0.07786 0.07786,-0.181676 l 0.129769,0.181676 0.28549,-0.207629 Q 32.6841,36.807819 32.424563,36.704004 32.19098,36.60019 32.061212,36.470421 Z \" \ r \ n "
+ " id= \" path4238 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 33.306989,37.664291 h 0.07786 v -0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4236 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.294795,37.352847 h -0.07786 l -0.02595,0.07786 h 0.07786 z \" \ r \ n "
+ " id= \" path4234 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 31.957397,37.534523 q 0.155722,0.155722 0.441213,0.207629 -0.155723,-0.155722 -0.441213,-0.207629 z \" \ r \ n "
+ " id= \" path4232 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.476471,37.534523 v 0.07786 h 0.07786 v -0.05191 z \" \ r \ n "
+ " id= \" path4230 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 32.710054,38.105504 h 0.07786 v -0.07786 h -0.07786 z \" \ r \ n "
+ " id= \" path4228 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.349833,31.461357 0.02595,-0.07786 h 0.07786 l -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4226 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 26.610935,31.980431 q 0.311444,0 0.648842,0.129769 l -0.02595,0.103815 q -0.181676,0 -0.311445,-0.07786 -0.155722,-0.07786 -0.311444,-0.155722 z \" \ r \ n "
+ " id= \" path4224 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.571222,31.798755 v -0.07786 h 0.07786 l -0.02595,0.07786 z \" \ r \ n "
+ " id= \" path4222 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.052148,33.407885 0.207629,0.259537 -0.07786,0.07786 -0.155722,-0.02595 -0.02595,-0.20763 z \" \ r \ n "
+ " id= \" path4220 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.725379,35.172736 q -0.05191,-0.05191 -0.129769,-0.155722 -0.05191,-0.103815 -0.05191,-0.20763 0.05191,-0.129768 0.103815,-0.259537 0.07786,-0.129768 0.129768,-0.259537 l 0.129769,-0.103814 0.129768,0.181676 q -0.07786,0.02595 -0.259537,0.02595 l 0.155722,0.181676 -0.259537,0.181676 z \" \ r \ n "
+ " id= \" path4218 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.465842,35.458227 -0.07786,-0.02595 v -0.05191 h 0.07786 z \" \ r \ n "
+ " id= \" path4216 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 29.362027,34.082681 0.07786,0.05191 q -0.233583,0.07786 -0.415259,0.05191 l 0.103815,-0.07786 z \" \ r \ n "
+ " id= \" path4214 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" M 27.337638,34.809384 26.948333,34.70557 q -0.07786,-0.285491 -0.233583,-0.519074 l 0.337398,-0.155723 q 0.233583,0.155723 0.389305,0.389306 z \" \ r \ n "
+ " id= \" path4212 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 28.739138,32.629274 q -0.05191,0.07786 -0.155722,0.181676 l -0.129769,-0.181676 0.129769,-0.02595 z \" \ r \ n "
+ " id= \" path4210 \" /> \ r \ n "
+ " <path \ r \ n "
+ " style= \" font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas' \" \ r \ n "
+ " d= \" m 27.856712,33.330024 h -0.05191 v -0.07786 l 0.07786,0.02595 z \" \ r \ n "
+ " id= \" path4186 \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </svg> \ r \ n " ;
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG de la note D
* @return
* /
2022-04-25 13:25:20 +02:00
public static String NoteD ( ) {
return " <?xml version= \" 1.0 \" encoding= \" UTF-8 \" standalone= \" no \" ?> \ r \ n "
+ " <!-- Created with Inkscape (http://www.inkscape.org/) --> \ r \ n "
+ " \ r \ n "
+ " <svg \ r \ n "
+ " width= \" 38.443188mm \" \ r \ n "
+ " height= \" 38.443161mm \" \ r \ n "
+ " viewBox= \" 0 0 38.443188 38.443161 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " id= \" svg5 \" \ r \ n "
+ " inkscape:version= \" 1.1.1 (3bf5ae0d25, 2021-09-20) \" \ r \ n "
+ " sodipodi:docname= \" NoteD.svg \" \ r \ n "
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" > \ r \ n "
+ " <sodipodi:namedview \ r \ n "
+ " id= \" namedview7 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " showguides= \" true \" \ r \ n "
+ " inkscape:guide-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox-edge-midpoints= \" true \" \ r \ n "
+ " inkscape:bbox-paths= \" true \" \ r \ n "
+ " inkscape:snap-nodes= \" false \" \ r \ n "
+ " inkscape:snap-bbox-midpoints= \" true \" \ r \ n "
+ " inkscape:snap-global= \" false \" \ r \ n "
+ " fit-margin-top= \" 0 \" \ r \ n "
+ " fit-margin-left= \" 0 \" \ r \ n "
+ " fit-margin-right= \" 0 \" \ r \ n "
+ " fit-margin-bottom= \" 0 \" \ r \ n "
+ " inkscape:zoom= \" 7.8218088 \" \ r \ n "
+ " inkscape:cx= \" 91.347158 \" \ r \ n "
+ " inkscape:cy= \" 68.20673 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:current-layer= \" layer1 \" > \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 1,0 \" \ r \ n "
+ " id= \" guide12970 \" /> \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 0,-1 \" \ r \ n "
+ " id= \" guide12972 \" /> \ r \ n "
+ " </sodipodi:namedview> \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" /> \ r \ n "
+ " <g \ r \ n "
+ " inkscape:label= \" Calque 1 \" \ r \ n "
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " id= \" layer1 \" \ r \ n "
+ " transform= \" translate(-19.656191,-12.181169) \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path12996 \" \ r \ n "
+ " style= \" font-variation-settings:normal;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000 \" \ r \ n "
+ " inkscape:transform-center-x= \" 0.041927404 \" \ r \ n "
+ " inkscape:transform-center-y= \" -13.470202 \" \ r \ n "
+ " d= \" m 38.817552,12.181169 -1.798582,3.127294 -0.250675,0.435907 -0.34885,-0.348849 -2.552465,-2.549995 -0.932324,3.485405 -0.133983,0.500737 -0.440846,-0.254382 -3.124823,-1.802284 0.0013,3.607656 v 0.518643 l -0.490858,-0.131513 -3.485405,-0.932322 0.93541,3.48417 0.1346,0.500737 H 25.82067 l -3.607657,0.0019 1.805372,3.12359 0.259321,0.448873 -0.491476,0.131513 -3.48417,0.93541 2.551848,2.549995 0.366754,0.366137 -0.440846,0.255 -3.12359,1.804753 3.125442,1.802903 0.448873,0.258705 -0.359345,0.359962 -2.549995,2.552465 3.484787,0.932323 0.501355,0.133984 -0.254382,0.440846 -1.802902,3.124823 3.607656,-0.0013 h 0.518644 l -0.131514,0.490857 -0.932322,3.485405 3.48417,-0.935408 0.501356,-0.1346 v 0.509379 l 0.0013,3.607657 3.12359,-1.80537 0.448872,-0.259324 0.132131,0.491477 0.934792,3.484172 2.549996,-2.551849 0.366756,-0.366756 0.25438,0.440846 1.804756,3.12359 1.802901,-3.125439 0.259324,-0.449492 0.359962,0.359962 2.551846,2.549996 0.932323,-3.484788 0.133983,-0.501356 0.440846,0.254383 3.124826,1.802904 -0.0013,-3.607657 V 43.9042 l 0.491477,0.131514 3.484788,0.932323 -0.934795,-3.484172 -0.1346,-0.501355 h 0.508766 l 3.607656,-0.0013 -1.804756,-3.12359 -0.259321,-0.448872 0.490858,-0.132131 3.484788,-0.934792 -2.552465,-2.549997 -0.366753,-0.366755 0.440846,-0.25438 3.12359,-1.804756 -3.124826,-1.802901 -0.449489,-0.259324 0.359962,-0.359961 2.549997,-2.551847 -3.485408,-0.932323 -0.500736,-0.133983 0.254382,-0.440847 1.802285,-3.124824 -3.607657,0.0012 h -0.518645 l 0.131515,-0.491476 0.932323,-3.484788 -3.484169,0.934793 -0.500739,0.1346 V 18.34556 l -0.0019,-3.607657 -3.12359,1.804755 -0.448873,0.259321 -0.131514,-0.490858 -0.935408,-3.484788 -2.549997,2.552465 -0.375398,0.376016 a 15.574866,15.762139 0 0 0 -0.0032,-6.32e-4 l -0.261793,-0.451343 z \" /> \ r \ n "
+ " <ellipse \ r \ n "
+ " style= \" fill:#ffffff;stroke:#ff0000;stroke-width:1.012;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" ellipse13122 \" \ r \ n "
+ " cx= \" 38.828659 \" \ r \ n "
+ " cy= \" 31.377256 \" \ r \ n "
+ " rx= \" 13.733081 \" \ r \ n "
+ " ry= \" 13.899035 \" /> \ r \ n "
+ " <g \ r \ n "
+ " aria-label= \" C \" \ r \ n "
+ " transform= \" scale(0.99914692,1.0008538) \" \ r \ n "
+ " id= \" text1481 \" \ r \ n "
+ " style= \" font-size:25.9537px;line-height:1.25;fill:#e12aff;stroke:#000000;stroke-width:0.065 \" > \ r \ n "
+ " <g \ r \ n "
+ " aria-label= \" D \" \ r \ n "
+ " transform= \" scale(0.96011067,1.0415466) \" \ r \ n "
+ " id= \" text16764 \" \ r \ n "
+ " style= \" font-size:25.1465px;font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas';fill:#ff2a71;stroke-width:0.08 \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path17499 \" \ r \ n "
+ " style= \" stroke-width:0.302362 \" \ r \ n "
+ " d= \" M 47.208984 35.134766 L 47.208984 90.318359 L 47.845703 89.625 C 47.78492 89.426851 47.633753 89.195841 47.390625 88.931641 C 47.8161 88.931641 48.21148 88.965191 48.576172 89.03125 L 49.851562 89.03125 L 50.035156 89.130859 C 50.035156 89.262959 49.882036 89.460409 49.578125 89.724609 C 49.33499 89.92275 49.152807 90.055035 49.03125 90.121094 L 48.392578 90.318359 L 49.123047 90.417969 L 49.943359 90.417969 C 50.125706 90.153771 50.338904 89.922761 50.582031 89.724609 L 50.945312 90.714844 L 50.308594 90.318359 L 50.308594 91.310547 C 50.916413 91.244488 51.58507 91.309661 52.314453 91.507812 L 52.496094 91.707031 L 51.494141 91.707031 L 51.857422 92.300781 L 49.943359 91.707031 C 50.125706 91.971231 50.459057 92.366131 50.945312 92.894531 L 50.671875 93.291016 L 50.490234 94.083984 L 50.582031 94.380859 L 50.582031 94.480469 C 50.399677 94.480469 50.246557 94.381745 50.125 94.183594 C 50.003439 93.985442 49.852269 93.918316 49.669922 93.984375 C 49.791503 94.314627 49.822509 94.646314 49.761719 94.976562 L 49.761719 95.966797 L 49.123047 95.570312 L 49.123047 96.560547 L 50.490234 96.363281 C 50.490234 95.900932 50.459228 95.569245 50.398438 95.371094 L 51.128906 95.371094 L 51.128906 95.867188 C 50.764215 96.395596 50.459925 96.72533 50.216797 96.857422 L 50.945312 97.650391 L 50.945312 96.759766 C 51.127657 97.023966 51.462959 97.286573 51.949219 97.550781 L 52.222656 97.550781 C 52.040309 97.088432 51.949219 96.561249 51.949219 95.966797 L 52.587891 95.867188 L 53.316406 95.867188 C 53.559532 95.801155 53.772731 95.834705 53.955078 95.966797 L 53.955078 97.650391 L 54.59375 96.857422 C 54.776095 97.187679 55.049371 97.418689 55.414062 97.550781 L 54.683594 98.443359 L 53.955078 97.75 L 53.955078 98.542969 C 54.258989 98.741118 54.532263 98.938567 54.775391 99.136719 C 55.079299 99.334878 55.383589 99.50072 55.6875 99.632812 L 55.595703 99.929688 L 55.140625 100.32617 C 54.836714 100.39223 54.56344 100.42383 54.320312 100.42383 L 53.589844 100.42383 L 53.589844 101.45508 C 53.711469 101.50794 53.833453 101.56042 53.955078 101.61328 C 54.258996 101.74538 54.472193 101.94478 54.59375 102.20898 C 54.715331 102.07688 54.744384 101.91104 54.683594 101.71289 C 54.683594 101.51474 54.745631 101.41602 54.867188 101.41602 C 54.927978 101.41602 55.019068 101.48119 55.140625 101.61328 C 55.262182 101.67931 55.353272 101.74644 55.414062 101.8125 L 55.414062 101.11914 L 55.140625 101.11914 L 54.775391 100.82031 L 54.775391 100.52344 C 55.079299 100.52344 55.383589 100.62216 55.6875 100.82031 L 56.052734 99.730469 L 57.509766 102.40625 L 57.054688 102.20898 L 56.052734 101.11914 L 55.6875 101.11914 L 56.416016 102.10938 C 56.659143 102.37358 56.93242 102.57103 57.236328 102.70312 L 58.421875 101.91016 C 58.482665 102.24041 58.573756 102.57209 58.695312 102.90234 C 58.877657 103.2326 59.059841 103.56233 59.242188 103.89258 C 59.485315 103.56233 59.760542 103.2642 60.064453 103 C 59.942882 102.93397 59.820775 102.86879 59.699219 102.80273 C 59.577648 102.73668 59.455541 102.70313 59.333984 102.70312 L 59.333984 100.91992 C 59.455555 101.18412 59.577662 101.44869 59.699219 101.71289 C 59.881571 101.91104 60.03274 102.10849 60.154297 102.30664 C 60.336641 102.37267 60.518825 102.4398 60.701172 102.50586 C 60.9443 102.57192 61.157497 102.60352 61.339844 102.60352 C 61.21828 102.20722 61.005083 101.91104 60.701172 101.71289 L 60.427734 101.71289 L 60.611328 101.41602 L 61.158203 101.11914 L 61.521484 101.11914 L 61.066406 101.51367 L 61.705078 102.30664 L 61.339844 103.39648 L 60.154297 103 L 60.154297 104.38867 L 58.96875 103.99219 L 58.96875 104.98242 L 60.337891 104.48633 C 60.641801 104.68448 60.944138 104.88388 61.248047 105.08203 C 61.612738 105.28018 61.948042 105.51119 62.251953 105.77539 L 62.251953 106.66602 L 62.251953 107.55859 L 61.066406 107.55859 L 61.066406 106.96289 L 61.339844 106.17188 C 61.096709 106.17187 60.914525 106.20347 60.792969 106.26953 L 60.792969 105.57617 L 59.152344 105.77539 L 58.96875 106.66602 C 59.151095 106.59996 59.395308 106.50123 59.699219 106.36914 C 60.003127 106.23704 6
+ " transform= \" matrix(0.27581116,0,0,0.25381258,20.490319,11.685293) \" /> \ r \ n "
+ " </g> \ r \ n "
+ " <text \ r \ n "
+ " xml:space= \" preserve \" \ r \ n "
+ " style= \" font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:'C.A. Gatintas';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.0171979;-inkscape-font-specification:'C.A. Gatintas';font-stretch:normal;font-variant:normal \" \ r \ n "
+ " x= \" 8.9887381 \" \ r \ n "
+ " y= \" 36.288406 \" \ r \ n "
+ " id= \" text12910 \" \ r \ n "
+ " transform= \" scale(1.0008538,0.99914691) \" ><tspan \ r \ n "
+ " sodipodi:role= \" line \" \ r \ n "
+ " id= \" tspan12908 \" \ r \ n "
+ " style= \" stroke-width:0.0171979;-inkscape-font-specification:'C.A. Gatintas';font-family:'C.A. Gatintas';font-weight:normal;font-style:normal;font-stretch:normal;font-variant:normal \" \ r \ n "
+ " x= \" 8.9887381 \" \ r \ n "
+ " y= \" 36.288406 \" /></text> \ r \ n "
+ " <path \ r \ n "
+ " style= \" fill:#ff2a71;stroke:#000000;stroke-width:0.065;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1 \" \ r \ n "
+ " d= \" m 47.60355,25.723578 -0.28777,0.287279 0.389336,-0.0338 0.287769,-0.388671 z \" \ r \ n "
+ " id= \" path18589 \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </svg> \ r \ n "
+ " " ;
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG de la note E
* @return
* /
2022-04-25 13:25:20 +02:00
public static String NoteE ( ) {
return " <?xml version= \" 1.0 \" encoding= \" UTF-8 \" standalone= \" no \" ?> \ r \ n "
+ " <!-- Created with Inkscape (http://www.inkscape.org/) --> \ r \ n "
+ " \ r \ n "
+ " <svg \ r \ n "
+ " width= \" 38.443188mm \" \ r \ n "
+ " height= \" 38.443161mm \" \ r \ n "
+ " viewBox= \" 0 0 38.443188 38.443161 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " id= \" svg5 \" \ r \ n "
+ " inkscape:version= \" 1.1.1 (3bf5ae0d25, 2021-09-20) \" \ r \ n "
+ " sodipodi:docname= \" NoteE.svg \" \ r \ n "
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" > \ r \ n "
+ " <sodipodi:namedview \ r \ n "
+ " id= \" namedview7 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " showguides= \" true \" \ r \ n "
+ " inkscape:guide-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox= \" true \" \ r \ n "
+ " inkscape:snap-bbox-edge-midpoints= \" true \" \ r \ n "
+ " inkscape:bbox-paths= \" true \" \ r \ n "
+ " inkscape:snap-nodes= \" false \" \ r \ n "
+ " inkscape:snap-bbox-midpoints= \" true \" \ r \ n "
+ " inkscape:snap-global= \" false \" \ r \ n "
+ " fit-margin-top= \" 0 \" \ r \ n "
+ " fit-margin-left= \" 0 \" \ r \ n "
+ " fit-margin-right= \" 0 \" \ r \ n "
+ " fit-margin-bottom= \" 0 \" \ r \ n "
+ " inkscape:zoom= \" 3.9109044 \" \ r \ n "
+ " inkscape:cx= \" 91.411082 \" \ r \ n "
+ " inkscape:cy= \" 68.142806 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:current-layer= \" layer1 \" > \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 1,0 \" \ r \ n "
+ " id= \" guide12970 \" /> \ r \ n "
+ " <sodipodi:guide \ r \ n "
+ " position= \" 16.046533,22.376859 \" \ r \ n "
+ " orientation= \" 0,-1 \" \ r \ n "
+ " id= \" guide12972 \" /> \ r \ n "
+ " </sodipodi:namedview> \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" /> \ r \ n "
+ " <g \ r \ n "
+ " inkscape:label= \" Calque 1 \" \ r \ n "
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " id= \" layer1 \" \ r \ n "
+ " transform= \" translate(-19.656191,-12.181169) \" > \ r \ n "
+ " <path \ r \ n "
+ " id= \" path12996 \" \ r \ n "
+ " style= \" font-variation-settings:normal;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000 \" \ r \ n "
+ " inkscape:transform-center-x= \" 0.041927404 \" \ r \ n "
+ " inkscape:transform-center-y= \" -13.470202 \" \ r \ n "
+ " d= \" m 38.817552,12.181169 -1.798582,3.127294 -0.250675,0.435907 -0.34885,-0.348849 -2.552465,-2.549995 -0.932324,3.485405 -0.133983,0.500737 -0.440846,-0.254382 -3.124823,-1.802284 0.0013,3.607656 v 0.518643 l -0.490858,-0.131513 -3.485405,-0.932322 0.93541,3.48417 0.1346,0.500737 H 25.82067 l -3.607657,0.0019 1.805372,3.12359 0.259321,0.448873 -0.491476,0.131513 -3.48417,0.93541 2.551848,2.549995 0.366754,0.366137 -0.440846,0.255 -3.12359,1.804753 3.125442,1.802903 0.448873,0.258705 -0.359345,0.359962 -2.549995,2.552465 3.484787,0.932323 0.501355,0.133984 -0.254382,0.440846 -1.802902,3.124823 3.607656,-0.0013 h 0.518644 l -0.131514,0.490857 -0.932322,3.485405 3.48417,-0.935408 0.501356,-0.1346 v 0.509379 l 0.0013,3.607657 3.12359,-1.80537 0.448872,-0.259324 0.132131,0.491477 0.934792,3.484172 2.549996,-2.551849 0.366756,-0.366756 0.25438,0.440846 1.804756,3.12359 1.802901,-3.125439 0.259324,-0.449492 0.359962,0.359962 2.551846,2.549996 0.932323,-3.484788 0.133983,-0.501356 0.440846,0.254383 3.124826,1.802904 -0.0013,-3.607657 V 43.9042 l 0.491477,0.131514 3.484788,0.932323 -0.934795,-3.484172 -0.1346,-0.501355 h 0.508766 l 3.607656,-0.0013 -1.804756,-3.12359 -0.259321,-0.448872 0.490858,-0.132131 3.484788,-0.934792 -2.552465,-2.549997 -0.366753,-0.366755 0.440846,-0.25438 3.12359,-1.804756 -3.124826,-1.802901 -0.449489,-0.259324 0.359962,-0.359961 2.549997,-2.551847 -3.485408,-0.932323 -0.500736,-0.133983 0.254382,-0.440847 1.802285,-3.124824 -3.607657,0.0012 h -0.518645 l 0.131515,-0.491476 0.932323,-3.484788 -3.484169,0.934793 -0.500739,0.1346 V 18.34556 l -0.0019,-3.607657 -3.12359,1.804755 -0.448873,0.259321 -0.131514,-0.490858 -0.935408,-3.484788 -2.549997,2.552465 -0.375398,0.376016 a 15.574866,15.762139 0 0 0 -0.0032,-6.32e-4 l -0.261793,-0.451343 z \" /> \ r \ n "
+ " <ellipse \ r \ n "
+ " style= \" fill:#ffffff;stroke:#ff0000;stroke-width:1.012;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" ellipse13122 \" \ r \ n "
+ " cx= \" 38.828659 \" \ r \ n "
+ " cy= \" 31.377256 \" \ r \ n "
+ " rx= \" 13.733081 \" \ r \ n "
+ " ry= \" 13.899035 \" /> \ r \ n "
+ " <g \ r \ n "
+ " aria-label= \" E \" \ r \ n "
+ " transform= \" scale(1.0754367,0.92985482) \" \ r \ n "
+ " id= \" text22560 \" \ r \ n "
+ " style= \" font-size:27.1199px;line-height:1.25;font-family:'C.A. Gatintas';-inkscape-font-specification:'C.A. Gatintas';fill:#ff0000;stroke:#000000;stroke-width:0.075 \" > \ r \ n "
+ " <path \ r \ n "
+ " d= \" m 32.822129,42.500612 0.02712,-0.108479 0.08136,0.02712 -0.02712,0.08136 z m -4.718862,2.68487 -0.16272,-0.244079 q 0.1356,-0.108479 0.298319,-0.189839 0.162719,-0.08136 0.325439,-0.135599 v 0.162719 q -0.189839,0.298319 -0.461038,0.406798 z m -2.115353,1.654314 q -0.189839,0.21696 -0.352558,0.433919 -0.16272,0.244079 -0.406799,0.379678 l -0.162719,-0.461038 q 0.162719,-0.244079 0.244079,-0.515278 z m 0.542398,-0.677997 0.596638,-0.379679 0.379679,0.623758 q -0.1356,0.08136 -0.352559,0.135599 -0.216959,0.05424 -0.352559,0.08136 z m 4.067985,-2.63063 -0.02712,0.108479 -0.08136,-0.02712 0.02712,-0.108479 z m -0.976316,1.003436 0.244079,0.02712 0.1356,0.108479 -0.406799,0.244079 -0.05424,-0.135599 z m -2.033993,0.922076 0.271199,0.05424 -0.325438,0.18984 z m -1.301755,-6.210457 0.05424,-0.135599 0.1356,-0.1356 q 0.108479,0.16272 0.162719,0.352559 0.05424,0.189839 0.10848,0.379679 z m -0.786477,0.433919 0.271199,0.05424 -0.325439,0.216959 z m 0.18984,-1.247516 0.271199,-0.162719 0.216959,0.352559 -0.08136,0.08136 q -0.162719,0 -0.325439,-0.02712 -0.189839,-0.02712 -0.325439,-0.08136 0.08136,-0.08136 0.21696,-0.1356 -0.488159,-0.08136 -0.922077,-0.352558 L 24.57768,37.402071 h 0.379678 l 0.406799,0.02712 q 0.189839,0.271199 0.406798,0.461038 -0.08136,0.244079 -0.08136,0.542398 z m 0.515278,2.142472 q -0.08136,0.21696 -0.08136,0.461039 l -0.515278,0.298319 -0.650878,-0.05424 v -0.352559 l 0.786477,-0.515278 z m -0.623758,-0.379678 0.08136,0.02712 -0.02712,0.08136 h -0.08136 z m -1.844153,0.976316 0.298319,0.461039 -0.298319,0.352558 -0.271199,-0.433918 z m 3.091668,-2.332311 0.216959,0.325439 -0.271198,-0.05424 z m 2.603511,-1.220396 -0.16272,-0.271199 h 0.16272 q 0.108479,0 0.216959,0.05424 -0.08136,0.1356 -0.216959,0.216959 z m 0.786477,5.830779 0.02712,-0.10848 0.08136,0.02712 -0.02712,0.10848 z m 0,-3.796786 0.325439,-0.216959 -0.08136,-0.379679 0.488158,0.813597 -0.135599,0.406799 -0.271199,-0.05424 0.271199,0.406798 -0.271199,0.16272 q -0.10848,-0.298319 -0.18984,-0.569518 -0.08136,-0.271199 -0.135599,-0.569518 z m -3.769666,1.789913 0.244079,0.05424 -0.325439,0.216959 q 0,-0.135599 0.08136,-0.271199 z m 4.908702,-2.250951 0.08136,-0.298319 0.10848,-0.08136 0.216959,0.379679 -0.352559,0.216959 z m -3.823906,1.871273 v 0.108479 l -0.10848,-0.02712 0.02712,-0.108479 z m -1.220396,0.976316 0.244079,0.05424 -0.325438,0.216959 q 0,-0.135599 0.08136,-0.271199 z m 1.654314,-0.976316 -0.10848,-0.02712 v -0.02712 q 0,-0.05424 0.02712,-0.08136 l 0.10848,0.02712 z m -0.488158,2.874709 v 0.244079 l -0.02712,0.596638 q -0.244079,-0.10848 -0.461038,-0.1356 0.162719,-0.108479 0.244079,-0.298318 l -0.271199,-0.1356 q 0.244079,-0.189839 0.515278,-0.271199 z m 3.444227,-2.196712 -0.108479,-0.02712 v -0.02712 q 0,-0.05424 0.02712,-0.08136 l 0.08136,0.02712 z m 0.189839,-1.166156 v -0.02712 l 0.02712,-0.08136 0.02712,0.05424 q 0.05424,-0.244079 0.18984,-0.379679 v 0.542398 q 0,-0.02712 -0.02712,0 0,0.02712 0,0.05424 h 0.135599 0.1356 l 0.02712,-0.16272 h 0.271199 q 0,-0.05424 0.108479,-0.05424 -0.02712,-0.271199 0.05424,-0.596638 0.02712,0.135599 0.189839,0.298319 l 0.10848,-0.08136 0.461038,0.759357 q 0.05424,-0.02712 0.1356,0 0.08136,0.02712 -0.08136,0.08136 l 0.189839,0.271199 0.10848,-0.08136 0.135599,0.10848 v -0.05424 l 0.18984,0.10848 v -0.18984 l 0.298319,0.05424 -0.05424,0.244079 q -0.08136,-0.05424 -0.1356,-0.135599 l -0.108479,0.189839 -0.02712,-0.10848 -0.1356,0.02712 -0.08136,0.08136 0.216959,0.461038 -0.18984,0.16272 -0.352558,-0.352559 -0.05424,0.02712 v 0.488158 q -0.05424,0.05424 -0.162719,0.189839 -0.10848,0.10848 -0.10848,0.16272 h 0.08136 q 0.08136,0 0.189839,-0.08136 0.135599,-0.108479 0.189839,-0.162719 l 0.244079,0.08136 0.02712,0.05424 q -0.05424,0.08136 -0.135599,0.18984 -0.08136,0.08136 -0.18984,0.135599 0.02712,-0.02712 0,-0.05424 -0.02712,-0.02712 -0.05424,-0.02712 -0.1356,0.10848 -0.244079,0.244079 -0.02712,-0.05424 -0.02712,-0.135599 0,-0.10848 0,-0.162719 l -0.406799,0.162719 q 0.02712,0.05424 0.05424,0.189839 0.05424,0.1356 0.02712,0.18984 l -0.298319,0.162719 0.08136,-0.10848 q -0.02712
+ " id= \" path22939 \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </svg> \ r \ n "
+ " " ;
}
2022-05-09 21:22:50 +02:00
/ * *
* Image SVG Interoorgation
* @return
* /
2022-04-25 13:25:20 +02:00
public static String imgInterogation ( ) {
return " <svg \ r \ n "
+ " width= \" 5.2916665mm \" \ r \ n "
+ " height= \" 5.2916665mm \" \ r \ n "
+ " viewBox= \" 0 0 5.2916665 5.2916665 \" \ r \ n "
+ " version= \" 1.1 \" \ r \ n "
+ " id= \" svg5 \" \ r \ n "
+ " inkscape:version= \" 1.1.1 (3bf5ae0d25, 2021-09-20) \" \ r \ n "
+ " sodipodi:docname= \" dessin.svg \" \ r \ n "
+ " xmlns:inkscape= \" http://www.inkscape.org/namespaces/inkscape \" \ r \ n "
+ " xmlns:sodipodi= \" http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd \" \ r \ n "
+ " xmlns= \" http://www.w3.org/2000/svg \" \ r \ n "
+ " xmlns:svg= \" http://www.w3.org/2000/svg \" > \ r \ n "
+ " <sodipodi:namedview \ r \ n "
+ " id= \" namedview7 \" \ r \ n "
+ " pagecolor= \" #ffffff \" \ r \ n "
+ " bordercolor= \" #666666 \" \ r \ n "
+ " borderopacity= \" 1.0 \" \ r \ n "
+ " inkscape:pageshadow= \" 2 \" \ r \ n "
+ " inkscape:pageopacity= \" 0.0 \" \ r \ n "
+ " inkscape:pagecheckerboard= \" 0 \" \ r \ n "
+ " inkscape:document-units= \" mm \" \ r \ n "
+ " showgrid= \" false \" \ r \ n "
+ " fit-margin-top= \" 0 \" \ r \ n "
+ " fit-margin-left= \" 0 \" \ r \ n "
+ " fit-margin-right= \" 0 \" \ r \ n "
+ " fit-margin-bottom= \" 0 \" \ r \ n "
+ " inkscape:zoom= \" 17.210034 \" \ r \ n "
+ " inkscape:cx= \" 14.032511 \" \ r \ n "
+ " inkscape:cy= \" 4.2126587 \" \ r \ n "
+ " inkscape:window-width= \" 1920 \" \ r \ n "
+ " inkscape:window-height= \" 1009 \" \ r \ n "
+ " inkscape:window-x= \" -8 \" \ r \ n "
+ " inkscape:window-y= \" -8 \" \ r \ n "
+ " inkscape:window-maximized= \" 1 \" \ r \ n "
+ " inkscape:current-layer= \" layer1 \" /> \ r \ n "
+ " <defs \ r \ n "
+ " id= \" defs2 \" /> \ r \ n "
+ " <g \ r \ n "
+ " inkscape:label= \" Calque 1 \" \ r \ n "
+ " inkscape:groupmode= \" layer \" \ r \ n "
+ " id= \" layer1 \" \ r \ n "
+ " transform= \" translate(-0.9827652,-0.55546188) \" > \ r \ n "
+ " <circle \ r \ n "
+ " style= \" fill:#0000ff;stroke-width:0.179715;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" path853 \" \ r \ n "
+ " cx= \" 3.6285985 \" \ r \ n "
+ " cy= \" 3.2012951 \" \ r \ n "
+ " r= \" 2.6458333 \" /> \ r \ n "
+ " <circle \ r \ n "
+ " style= \" fill:#000080;stroke-width:0.149432;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke \" \ r \ n "
+ " id= \" circle1101 \" \ r \ n "
+ " cx= \" 3.6285985 \" \ r \ n "
+ " cy= \" 3.2012951 \" \ r \ n "
+ " r= \" 2.1999936 \" /> \ r \ n "
+ " <g \ r \ n "
+ " aria-label= \" ? \" \ r \ n "
+ " transform= \" scale(1.0734341,0.93158952) \" \ r \ n "
+ " id= \" text2351 \" \ r \ n "
+ " style= \" font-size:5.79799px;line-height:1.25;fill:#ffffff;stroke-width:0.14495 \" > \ r \ n "
+ " <path \ r \ n "
+ " d= \" M 3.648299,5.462408 H 3.0707648 V 4.8650565 H 3.648299 Z \" \ r \ n "
+ " id= \" path913 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccccc \" /> \ r \ n "
+ " <path \ r \ n "
+ " d= \" M 4.7522415,2.4358753 C 4.7629405,2.8121477 4.5728746,3.1724916 4.2889115,3.4124215 4.0765321,3.6004941 3.8326951,3.7482185 3.5886801,3.8910348 V 4.528021 H 3.0819222 V 3.6645509 C 3.4348884,3.4576031 3.8301244,3.2744103 4.0603153,2.9191443 4.186844,2.7177144 4.2076563,2.4538348 4.1329826,2.2298501 4.0340218,1.9717328 3.7399573,1.8592786 3.4826485,1.8466631 3.0951328,1.8205012 2.7139841,1.951098 2.380491,2.135784 2.336159,2.131554 2.371151,2.048014 2.360005,2.0105995 V 1.5582499 C 2.740861,1.4257904 3.1460986,1.3473326 3.5504973,1.3626891 c 0.3925487,0.01248 0.805306,0.162408 1.0344805,0.4971893 0.1168547,0.1674941 0.1684716,0.3733354 0.1672637,0.5759969 z \" \ r \ n "
+ " id= \" path851 \" \ r \ n "
+ " sodipodi:nodetypes= \" ccccccccccccccc \" \ r \ n "
+ " style= \" fill:#ffffff \" /> \ r \ n "
+ " </g> \ r \ n "
+ " </g> \ r \ n "
+ " </svg> " ;
}
/ * *
* Retourne l ' entête et les styles CSS du formulaire
* @return
* /
2022-05-09 21:22:50 +02:00
public static String getStyleCSS ( ) {
// Date aujourdhui = new Date();
// DateFormat mediumDateFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);
return " \ r<style type= \" text/css \" > \ r "
2022-12-14 10:33:48 +01:00
+ " p.pablo {margin-bottom: 0.25cm; line-height: 100%; background: transparent; margin-left: 1cm; } "
2022-04-25 13:25:20 +02:00
+ " .header {background-color: #f1f1f1;padding: 30px;text-align:center;} "
+ " h1 { margin-bottom: 0.25cm; background: transparent;} "
2022-05-09 21:22:50 +02:00
+ " h2 {color: blue;font-size:22pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 110%; background: transparent; margin-left: 20pt; margin-right: 10px; text-decoration: underline overline;} "
+ " h3 {font-size:18pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 110%; background: transparent; margin-left: 20pt;} "
2022-04-25 13:25:20 +02:00
+ " header.h1.western { font-family: \" Arial \" ; font-size: 18pt; font-weight: bold; backgroung: #adff2f;} "
+ " .header p {color:blue; font-size:30px;} "
2022-05-09 21:22:50 +02:00
+ " .triche {background: #AA0000;padding-top: 5px;padding-right: 5px;padding-bottom: 5px;padding-left: 5px;width=80%;margin-top:18px; box-shadow: 5px 10px 18px #800000;} "
+ " .triche p {color:white; font-size:16px;margin-left:10px;margin-bottom:6px;margin-top:6px} "
2022-04-25 13:25:20 +02:00
+ " .header h4 {text-align:left;font-family: \" Arial \" ; font-size: 12pt; font-weight: bold; line-height: 110%;} "
+ " h4.western { font-family: \" Arial \" ; font-size: 14pt; font-style: italic; font-weight: bold; line-height: 40%} "
2022-05-09 21:22:50 +02:00
+ " a:link { color: #000099; so-language: zxx; text-decoration: underline; margin-left: 10px; } "
+ " a:visited { color: #99000; so-language: zxx; text-decoration: underline; margin-left: 10px; } "
2022-04-25 13:25:20 +02:00
+ " hr { display: block; margin-top: 0.5em; margin-bottom: 8em; margin-left: 2em; margin-right: 2em; border-style: inset; border-width: 4px;} "
+ " spanpablo { float: right; width: 8em; font-size: 250%; font-family: algerian, courier; line-height: 80%; margin-right: 1%; color: red; text-align: center} "
+ " p.p1{margin-bottom: 0cm; margin-top: 0cm; line-height: 100%; background: transparent; margin-left: 0cm; white-space: pre;} "
2022-05-09 21:22:50 +02:00
+ " p.p8{font-size:14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 110%; background: transparent; margin-left: 8pt; margin-right: 10px;} "
+ " p.p9{font-size:16pt;margin-bottom: 12px;text-align: left; margin-top: 0cm; line-height: 110%; background: transparent; margin-left: 40pt; margin-right: 0cm;text-decoration: underline overline wavy blue;text-shadow: 0px 1px #101010;} "
+ " p.p10{font-size:12pt;margin-bottom: 12px;text-align: left; margin-top: 0cm; line-height: 110%; background: transparent; margin-left: 30pt; margin-right: 0cm;text-decoration: underline overline wavy red;} "
2022-12-12 11:49:47 +01:00
+ " p.p11{font-size:14pt;margin-bottom: 0cm; margin-top: 0cm; line-height: 105%; background: yellow; margin-left: 8pt; margin-right: 10px;} "
2022-05-09 21:22:50 +02:00
+ " .commentaire{margin-left: 0px; margin-bottom: 24px; margin-top: 24px;font-size:1.4rem} "
2022-04-25 13:25:20 +02:00
+ " p.p2{margin-left: 0px; margin-bottom: 0cm; margin-top: 4px; line-height: 115%} "
+ " p.p3{margin-left: 20px; line-height: 100%; border: 1px solid black; background-color: lightcyan; margin-right: 10px; } "
+ " p.p4{margin-left: 0px; margin-bottom: 0cm; margin-top: 4px; margin-right: 4px; line-height: 115%; background: darkblue; color:white; font-size: 20px; white-space: pre;} "
+ " p.p5{margin-left: 80px; margin-bottom: 0cm; margin-top: 4px; margin-right: 80px; line-height: 115%; background: red; color:white; font-size: 20px;} "
2022-05-09 21:22:50 +02:00
+ " p.p6{margin-left: 80px; margin-bottom: 0cm; margin-top: 4px; margin-right: 80px; line-height: 115%; background: beige; color:darkcyan; font-size: 20px;} "
2022-04-25 13:25:20 +02:00
+ " p.p7{margin-left: 80px; margin-bottom: 0cm; margin-top: 4px; margin-right: 80px; line-height: 115%; background: #7FFF00; font-size: 20px;} "
+ " #navbar {overflow: hidden;background-color: #333;width:100%;box-shadow: 5px 10px 8px #888888;} "
+ " #navbar a {float: left;display: block;color: #f2f2f2;text-align: center;padding: 14px 16px;text-decoration: none;font-size: 17px;} "
+ " #navbar a:hover {background-color: #ddd;color: black;} "
2022-05-09 21:22:50 +02:00
+ " #navbar a.active {background-color: #4CAF50;color: white;margin-left:0px;} "
+ " #navbar a.active2 {background-color: #FF8050;color: white;margin-left:0px;} "
+ " #navbar a.active3 {background-color: #5080FF;color: white;margin-left:0px;} "
2022-04-25 13:25:20 +02:00
+ " div.sticky {position: fixed;top: 0;width: 100%;} "
+ " .sticky + .content {padding-top: 60px;} "
2022-05-09 21:22:50 +02:00
+ " #navbar2 {overflow: hidden; background-color: #333;} "
+ " #navbar2 a {float: left; font-size: 18px; color: white; text-align: center; padding: 16px 18px; text-decoration: none;} "
2022-12-13 15:32:28 +01:00
+ " #grad1 {height: 40px;background-color: red; background-image: linear-gradient(red, yellow);} "
2022-12-14 10:33:48 +01:00
+ " #grad2 {height: 40px;width:auto;background-color: white; background-image: linear-gradient(cyan, transparent,transparent,cyan);margin-left: 1cm;margin-right: 1cm;padding: 8px;;} "
2022-05-09 21:22:50 +02:00
+ " .dropdown {position: relative; display: inline-block;} "
+ " .dropbtn:hover, .dropbtn:focus { background-color: #3e8e41;} "
+ " .dropdown-content {display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);} "
+ " .dropdown-content a {color: black; padding: 12px 16px; text-decoration: none; display: block;} "
+ " .dropdown-content a:hover {background-color: #f1f1f1} "
+ " .show {display:block;} "
+ " #myDropdown {background-color: #508050;color: black;} "
+ " .menu-box{display: none;} "
+ " .menuopen{display: block;} "
2022-04-25 13:25:20 +02:00
+ " .tooltip {position: relative;display: inline-block;border-bottom: 1px dotted black;} "
2022-05-09 21:22:50 +02:00
+ " .tooltip .tooltiptext {visibility: hidden;background-color: black;color: #fff;text-align: center;border-radius: 6px;padding: 5px 0;position: absolute;z-index: 1;margin-left: -30px; width: 260px;top: 100%;left: 10%;} "
2022-04-25 13:25:20 +02:00
+ " .tooltip .tooltiptext::after {content: \" \" ;position: absolute;bottom: 100%;left: 50%;margin-left: -5px;border-width: 5px;border-style: solid;border-color: transparent transparent black transparent;} "
+ " .tooltip:hover .tooltiptext {visibility: visible;} "
2022-05-09 21:22:50 +02:00
+ " .tooltip1 {position: relative;display: inline-block;border-bottom: 1px dotted black;} "
+ " .tooltip1 .tooltiptext1 {visibility: hidden;background-color: #0000CC;color: #fff;text-align: left;border-radius: 4px;padding: 10px;position: absolute;z-index: 1;margin-left: -40px; width: 280px;top: 100%;left: 10%;} "
+ " .tooltip1 .tooltiptext1::after {content: \" \" ;position: absolute;bottom: 100%;left: 50%;margin-left: -5px;border-width: 5px;border-style: solid;border-color: transparent transparent #0000CC transparent;} "
+ " .tooltip1:hover .tooltiptext1 {visibility: visible;} "
2022-04-25 13:25:20 +02:00
+ " .tooltip2 {position: relative;display: inline-block;border-bottom: 1px dotted black;} "
2022-05-09 21:22:50 +02:00
+ " .tooltip2 .tooltiptext2 {visibility: hidden;background-color: black;color: #fff;text-align: left;border-radius: 8px;padding: 8px;position: absolute;z-index: 1;margin-left: -40px; width: 340px;top: 100%;left: 10%;} "
+ " .tooltip2 .tooltiptext2::after {content: \" \" ;position: absolute;bottom: 100%;left: 50%;margin-left: -5px;border-width: 5px;border-style: solid;border-color: transparent transparent black transparent;} "
2022-04-25 13:25:20 +02:00
+ " .tooltip2:hover .tooltiptext2 {visibility: visible;} "
2022-05-09 21:22:50 +02:00
+ " .footer {position: fixed;left: 0;bottom: 0;width: 100%;background-color: white;color: black;text-align: center;} "
2023-04-09 14:25:31 +02:00
+ " </style> \ r " ;
2022-04-25 13:25:20 +02:00
}
/ * *
* Retourne le code HTML du menu
* @param items
* @return
* /
public static String getHTMLmenu ( ArrayList < node > items ) {
2023-04-09 14:25:31 +02:00
String codeHTMLMenu = " <div id= \" navbar \" onclick= \" toggleMenu() \" ><a class= \" active \" href= \" #top \" >Note</a> " ;
2022-04-25 13:25:20 +02:00
for ( int i = 0 ; i < items . size ( ) ; i + + ) {
2022-05-09 21:22:50 +02:00
codeHTMLMenu = codeHTMLMenu + " <a class= \" active3 \" href= \" " + items . get ( i ) . getAttributs ( ) . get ( " id " ) + " \" > " + items . get ( i ) . getAttributs ( ) . get ( " titre " ) + " </a> " ;
2022-04-25 13:25:20 +02:00
}
codeHTMLMenu = codeHTMLMenu + " </div> " ;
return codeHTMLMenu ;
}
/ * *
* Du javascript pour le menu sticky
* @return
* /
public static String getHTMLJavaScript ( ) {
return " <script> "
+ " window.onscroll = function() {myFunction()}; "
+ " var navbar = document.getElementById( \" navbar \" ); "
+ " var sticky = navbar.offsetTop; "
+ " function myFunction() { "
+ " if (window.pageYOffset >= sticky) { "
+ " navbar.classList.add( \" sticky \" ) "
+ " } else { "
+ " navbar.classList.remove( \" sticky \" ); "
+ " } "
+ " } "
+ " </script> " ;
}
2023-04-09 14:25:31 +02:00
2022-04-25 13:25:20 +02:00
}