Change ship status to simple Instant when ship becomes ready
authorTheSaminator <TheSaminator@users.noreply.github.com>
Tue, 1 Mar 2022 21:57:11 +0000 (16:57 -0500)
committerTheSaminator <TheSaminator@users.noreply.github.com>
Tue, 1 Mar 2022 21:57:11 +0000 (16:57 -0500)
src/jvmMain/kotlin/starshipfights/auth/providers.kt
src/jvmMain/kotlin/starshipfights/data/admiralty/admirals.kt
src/jvmMain/kotlin/starshipfights/data/data_routines.kt
src/jvmMain/kotlin/starshipfights/game/server_game.kt
src/jvmMain/kotlin/starshipfights/info/html_utils.kt
src/jvmMain/kotlin/starshipfights/info/views_user.kt
src/jvmMain/resources/static/images/flag/isarnareykk.inkscape.svg
src/jvmMain/resources/static/images/flag/isarnareykk.svg

index a075e708e06746c57c6ebce40b67224a6a44ceff..67cac6c4378bafb54b3350d4fabeec828749a7db 100644 (file)
@@ -223,7 +223,7 @@ interface AuthProvider {
                                        if (admiral.owningUser != currentUser) forbid()
                                        if (ship.owningAdmiral != admiralId) forbid()
                                        
-                                       if (ship.status != DrydockStatus.Ready) redirect("/admiral/${admiralId}/manage")
+                                       if (ship.readyAt > Instant.now()) redirect("/admiral/${admiralId}/manage")
                                        if (ship.shipType.weightClass.isUnique) redirect("/admiral/${admiralId}/manage")
                                        
                                        coroutineScope {
@@ -269,7 +269,7 @@ interface AuthProvider {
                                        val newShip = ShipInDrydock(
                                                name = newShipName,
                                                shipType = shipType,
-                                               status = DrydockStatus.Ready,
+                                               readyAt = Instant.now().plus(6, ChronoUnit.HOURS),
                                                owningAdmiral = admiralId
                                        )
                                        
index 1828ea9ea60980456aabc4fb3600086174f25232..ca797d56a0393ef00adf100121e5e18f992e0a23 100644 (file)
@@ -6,10 +6,7 @@ import kotlinx.serialization.Contextual
 import kotlinx.serialization.SerialName
 import kotlinx.serialization.Serializable
 import org.bson.conversions.Bson
-import org.litote.kmongo.and
-import org.litote.kmongo.eq
-import org.litote.kmongo.gte
-import org.litote.kmongo.lt
+import org.litote.kmongo.*
 import starshipfights.data.DataDocument
 import starshipfights.data.DocumentTable
 import starshipfights.data.Id
@@ -52,27 +49,15 @@ infix fun AdmiralRank.Companion.eq(rank: AdmiralRank): Bson = when (rank.ordinal
        )
 }
 
-@Serializable
-sealed class DrydockStatus {
-       @Serializable
-       object Ready : DrydockStatus()
-       
-       @Serializable
-       data class InRepair(val until: @Contextual Instant) : DrydockStatus()
-}
-
 @Serializable
 data class ShipInDrydock(
        @SerialName("_id")
        override val id: Id<ShipInDrydock> = Id(),
        val name: String,
        val shipType: ShipType,
-       val status: DrydockStatus,
+       val readyAt: @Contextual Instant,
        val owningAdmiral: Id<Admiral>
 ) : DataDocument<ShipInDrydock> {
-       val isReady: Boolean
-               get() = status == DrydockStatus.Ready
-       
        val shipData: Ship
                get() = Ship(id.reinterpret(), name, shipType)
        
@@ -105,11 +90,14 @@ suspend fun getInGameAdmiral(admiralId: Id<InGameAdmiral>) = Admiral.get(admiral
        }
 }
 
-suspend fun getAdmiralsShips(admiralId: Id<Admiral>) = ShipInDrydock
-       .filter(ShipInDrydock::owningAdmiral eq admiralId)
-       .toList()
-       .filter { it.isReady }
-       .associate { it.shipData.id to it.shipData }
+suspend fun getAdmiralsShips(admiralId: Id<Admiral>): Map<Id<Ship>, Ship> {
+       val now = Instant.now()
+       
+       return ShipInDrydock
+               .filter(and(ShipInDrydock::owningAdmiral eq admiralId, ShipInDrydock::readyAt lte now))
+               .toList()
+               .associate { it.shipData.id to it.shipData }
+}
 
 fun generateFleet(admiral: Admiral): List<ShipInDrydock> = ShipWeightClass.values()
        .flatMap { swc ->
@@ -125,6 +113,8 @@ fun generateFleet(admiral: Admiral): List<ShipInDrydock> = ShipWeightClass.value
                        }
        }
        .let { shipTypes ->
+               val now = Instant.now().minusMillis(100L)
+               
                val shipNames = mutableSetOf<String>()
                shipTypes.mapNotNull { st ->
                        newShipName(st.faction, st.weightClass, shipNames)?.let { name ->
@@ -132,7 +122,7 @@ fun generateFleet(admiral: Admiral): List<ShipInDrydock> = ShipWeightClass.value
                                        id = Id(),
                                        name = name,
                                        shipType = st,
-                                       status = DrydockStatus.Ready,
+                                       readyAt = now,
                                        owningAdmiral = admiral.id
                                )
                        }
index 4c0d3ac18da5475aa7e7cbfa32b72e4bcc190de0..08a157ef6c096e7ddfdd6f162b2b8703708fa476 100644 (file)
@@ -1,11 +1,11 @@
 package starshipfights.data
 
 import kotlinx.coroutines.*
-import org.litote.kmongo.div
 import org.litote.kmongo.inc
-import org.litote.kmongo.lt
-import org.litote.kmongo.setValue
-import starshipfights.data.admiralty.*
+import starshipfights.data.admiralty.Admiral
+import starshipfights.data.admiralty.BattleRecord
+import starshipfights.data.admiralty.ShipInDrydock
+import starshipfights.data.admiralty.eq
 import starshipfights.data.auth.User
 import starshipfights.data.auth.UserSession
 import starshipfights.game.AdmiralRank
@@ -30,17 +30,6 @@ object DataRoutines {
                UserSession.initialize()
                
                return scope.launch {
-                       // Repair ships
-                       launch {
-                               while (currentCoroutineContext().isActive) {
-                                       launch {
-                                               val now = Instant.now()
-                                               ShipInDrydock.update(ShipInDrydock::status / DrydockStatus.InRepair::until lt now, setValue(ShipInDrydock::status, DrydockStatus.Ready))
-                                       }
-                                       delay(300_000)
-                               }
-                       }
-                       
                        // Pay admirals
                        launch {
                                var prevTime = Instant.now().atZone(ZoneId.systemDefault())
index 40d9a15eab778b830fcf733232ea7df2abc42d77..4e24990dd72520b85dec14c4f9905dd756fe0469 100644 (file)
@@ -15,7 +15,6 @@ import starshipfights.data.DocumentTable
 import starshipfights.data.Id
 import starshipfights.data.admiralty.Admiral
 import starshipfights.data.admiralty.BattleRecord
-import starshipfights.data.admiralty.DrydockStatus
 import starshipfights.data.admiralty.ShipInDrydock
 import starshipfights.data.auth.User
 import starshipfights.data.createToken
@@ -124,6 +123,8 @@ class GameSession(gameState: GameState) {
                                        errorMessageChannel(player).send(result.message)
                                }
                                is GameEvent.GameEnd -> {
+                                       if (_gameStart.isActive)
+                                               _gameStart.cancel()
                                        _gameEnd.complete(result)
                                }
                        }
@@ -190,10 +191,10 @@ suspend fun DefaultWebSocketServerSession.gameEndpoint(user: User, token: String
 private const val SHIP_POINTS_PER_ACUMEN = 5
 
 private suspend fun onGameEnd(gameState: GameState, gameEnd: GameEvent.GameEnd, startedAt: Instant, endedAt: Instant) {
-       val destroyedShipStatus = DrydockStatus.InRepair(endedAt.plus(12, ChronoUnit.HOURS))
-       val damagedShipStatus = DrydockStatus.InRepair(endedAt.plus(8, ChronoUnit.HOURS))
-       val intactShipStatus = DrydockStatus.InRepair(endedAt.plus(4, ChronoUnit.HOURS))
-       val escapedShipStatus = DrydockStatus.InRepair(endedAt.plus(4, ChronoUnit.HOURS))
+       val destroyedShipReadyAt = endedAt.plus(12, ChronoUnit.HOURS)
+       val damagedShipReadyAt = endedAt.plus(9, ChronoUnit.HOURS)
+       val intactShipReadyAt = endedAt.plus(3, ChronoUnit.HOURS)
+       val escapedShipReadyAt = endedAt.plus(3, ChronoUnit.HOURS)
        
        val shipWrecks = gameState.destroyedShips
        val ships = gameState.ships
@@ -227,16 +228,16 @@ private suspend fun onGameEnd(gameState: GameState, gameEnd: GameEvent.GameEnd,
        
        coroutineScope {
                launch {
-                       ShipInDrydock.update(ShipInDrydock::id `in` destroyedShips, setValue(ShipInDrydock::status, destroyedShipStatus))
+                       ShipInDrydock.update(ShipInDrydock::id `in` destroyedShips, setValue(ShipInDrydock::readyAt, destroyedShipReadyAt))
                }
                launch {
-                       ShipInDrydock.update(ShipInDrydock::id `in` damagedShips, setValue(ShipInDrydock::status, damagedShipStatus))
+                       ShipInDrydock.update(ShipInDrydock::id `in` damagedShips, setValue(ShipInDrydock::readyAt, damagedShipReadyAt))
                }
                launch {
-                       ShipInDrydock.update(ShipInDrydock::id `in` intactShips, setValue(ShipInDrydock::status, intactShipStatus))
+                       ShipInDrydock.update(ShipInDrydock::id `in` intactShips, setValue(ShipInDrydock::readyAt, intactShipReadyAt))
                }
                launch {
-                       ShipInDrydock.update(ShipInDrydock::id `in` escapedShips, setValue(ShipInDrydock::status, escapedShipStatus))
+                       ShipInDrydock.update(ShipInDrydock::id `in` escapedShips, setValue(ShipInDrydock::readyAt, escapedShipReadyAt))
                }
                
                launch {
index 17f6d6feb87ae992f39cebb50028cc233cc89062..3b67f55a783e839762d4c75a6de55490553a26f3 100644 (file)
@@ -22,17 +22,3 @@ fun FORM.csrfToken(cookie: Id<UserSession>) = hiddenInput {
        name = CsrfProtector.csrfInputName
        value = CsrfProtector.newNonce(cookie, this@csrfToken.action)
 }
-
-var META.property: String?
-       get() = attributes["property"]
-       set(value) {
-               if (value != null)
-                       attributes["property"] = value
-               else
-                       attributes.remove("property")
-       }
-
-fun HEAD.metaOG(property: String, content: String) = meta {
-       this.property = property
-       this.content = content
-}
index beb926e999bff10df86fb8fe545a1ef68be07e8e..d018ba49df92bb5da4d2dac8fbfd8247fb894493 100644 (file)
@@ -461,6 +461,8 @@ suspend fun ApplicationCall.admiralPage(): HTML.() -> Unit {
                                        th { +"Ship Class" }
                                        th { +"Ship Status" }
                                }
+                               
+                               val now = Instant.now()
                                ships.sortedBy { it.name }.sortedBy { it.shipType.weightClass.rank }.forEach { ship ->
                                        tr {
                                                td { +ship.shipData.fullName }
@@ -470,16 +472,21 @@ suspend fun ApplicationCall.admiralPage(): HTML.() -> Unit {
                                                        }
                                                }
                                                td {
-                                                       when (ship.status) {
-                                                               DrydockStatus.Ready -> +"Ready"
-                                                               is DrydockStatus.InRepair -> {
-                                                                       +"Repairing"
-                                                                       br
-                                                                       +"Will be ready at "
-                                                                       span(classes = "moment") {
-                                                                               style = "display:none"
-                                                                               +ship.status.until.toEpochMilli().toString()
-                                                                       }
+                                                       val shipReadyAt = ship.readyAt
+                                                       if (shipReadyAt <= now) {
+                                                               +"Ready"
+                                                               br
+                                                               +"(since "
+                                                               span(classes = "moment") {
+                                                                       style = "display:none"
+                                                                       +shipReadyAt.toEpochMilli().toString()
+                                                               }
+                                                               +")"
+                                                       } else {
+                                                               +"Will be ready at "
+                                                               span(classes = "moment") {
+                                                                       style = "display:none"
+                                                                       +shipReadyAt.toEpochMilli().toString()
                                                                }
                                                        }
                                                }
@@ -675,6 +682,8 @@ suspend fun ApplicationCall.manageAdmiralPage(): HTML.() -> Unit {
                                        th { +"Ship Status" }
                                        th { +"Ship Value" }
                                }
+                               
+                               val now = Instant.now()
                                ownedShips.sortedBy { it.name }.sortedBy { it.shipType.weightClass.rank }.forEach { ship ->
                                        tr {
                                                td {
@@ -688,16 +697,21 @@ suspend fun ApplicationCall.manageAdmiralPage(): HTML.() -> Unit {
                                                        }
                                                }
                                                td {
-                                                       when (ship.status) {
-                                                               DrydockStatus.Ready -> +"Ready"
-                                                               is DrydockStatus.InRepair -> {
-                                                                       +"Repairing"
-                                                                       br
-                                                                       +"Will be ready at "
-                                                                       span(classes = "moment") {
-                                                                               style = "display:none"
-                                                                               +ship.status.until.toEpochMilli().toString()
-                                                                       }
+                                                       val shipReadyAt = ship.readyAt
+                                                       if (shipReadyAt <= now) {
+                                                               +"Ready"
+                                                               br
+                                                               +"(since "
+                                                               span(classes = "moment") {
+                                                                       style = "display:none"
+                                                                       +shipReadyAt.toEpochMilli().toString()
+                                                               }
+                                                               +")"
+                                                       } else {
+                                                               +"Will be ready at "
+                                                               span(classes = "moment") {
+                                                                       style = "display:none"
+                                                                       +shipReadyAt.toEpochMilli().toString()
                                                                }
                                                        }
                                                }
@@ -705,7 +719,7 @@ suspend fun ApplicationCall.manageAdmiralPage(): HTML.() -> Unit {
                                                        +ship.shipType.weightClass.sellPrice.toString()
                                                        +" "
                                                        +admiral.faction.currencyName
-                                                       if (ship.status == DrydockStatus.Ready && !ship.shipType.weightClass.isUnique) {
+                                                       if (ship.readyAt <= now && !ship.shipType.weightClass.isUnique) {
                                                                br
                                                                a(href = "/admiral/${admiralId}/sell/${ship.id}") { +"Sell" }
                                                        }
@@ -804,7 +818,7 @@ suspend fun ApplicationCall.sellShipConfirmPage(): HTML.() -> Unit {
        if (admiral.owningUser != currentUser) forbid()
        if (ship.owningAdmiral != admiralId) forbid()
        
-       if (ship.status != DrydockStatus.Ready) redirect("/admiral/${admiralId}/manage")
+       if (ship.readyAt > Instant.now()) redirect("/admiral/${admiralId}/manage")
        if (ship.shipType.weightClass.isUnique) redirect("/admiral/${admiralId}/manage")
        
        return page(
index 47494009d07fd04233ffc3028c2eb0575b1ec1d2..2ef496c58e5a45c34e2d2d16e45a04cd93ae2884 100644 (file)
 <!-- Created with Inkscape (http://www.inkscape.org/) -->
 
 <svg
-               xmlns:dc="http://purl.org/dc/elements/1.1/"
-               xmlns:cc="http://creativecommons.org/ns#"
-               xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-               xmlns="http://www.w3.org/2000/svg"
-               xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
-               xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
-               width="128mm"
-               height="80mm"
-               viewBox="0 0 128 80"
-               version="1.1"
-               id="svg8"
-               inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
-               sodipodi:docname="isarnareykk.inkscape.svg">
-       <defs
-                       id="defs2">
-               <clipPath
-                               clipPathUnits="userSpaceOnUse"
-                               id="clipPath904">
-                       <g
-                                       inkscape:label="Clip"
-                                       id="use906">
-                               <g
-                                               style="stroke-width:1.19062495"
-                                               transform="matrix(0.22222222,0,0,0.22222222,-2.666666,217)"
-                                               id="g941">
-                                       <rect
-                                                       style="fill:#ffcc33;stroke-width:1.19062495"
-                                                       width="600"
-                                                       height="360"
-                                                       x="0"
-                                                       y="0"
-                                                       id="rect921"/>
-                                       <polygon
-                                                       style="fill:#ffffff;stroke-width:1.19062495"
-                                                       points="540,360 600,360 600,324 60,0 0,0 0,36 "
-                                                       id="polygon923"/>
-                                       <polygon
-                                                       style="fill:#ffffff;stroke-width:1.19062495"
-                                                       points="60,360 0,360 0,324 540,0 600,0 600,36 "
-                                                       id="polygon925"/>
-                                       <circle
-                                                       style="fill:#ffffff;stroke-width:1.19062495"
-                                                       r="150"
-                                                       cx="300"
-                                                       cy="180"
-                                                       id="circle927"/>
-                                       <polygon
-                                                       style="fill:#000000;stroke-width:1.19062495"
-                                                       points="566.25,360 600,360 600,339.75 33.75,0 0,0 0,20.25 "
-                                                       id="polygon929"/>
-                                       <polygon
-                                                       style="fill:#000000;stroke-width:1.19062495"
-                                                       points="33.75,360 0,360 0,339.75 566.25,0 600,0 600,20.25 "
-                                                       id="polygon931"/>
-                                       <circle
-                                                       style="fill:#000000;stroke-width:1.19062495"
-                                                       r="135"
-                                                       cx="300"
-                                                       cy="180"
-                                                       id="circle933"/>
-                                       <circle
-                                                       style="fill:#ffffff;stroke-width:1.19062495"
-                                                       r="105"
-                                                       cx="300"
-                                                       cy="180"
-                                                       id="circle935"/>
-                                       <g
-                                                       style="stroke-width:1.19062495"
-                                                       transform="matrix(3,0,0,3,300,191.25)"
-                                                       id="g939">
-                                               <path
-                                                               style="fill:#000000;stroke-width:1.19062495"
-                                                               inkscape:connector-curvature="0"
-                                                               d="m -1.266704,23.778129 c -1.537976,-1.75464 -1.571822,-2.10765 -0.459874,-4.79639 0.150439,-0.36377 -0.112142,-0.23308 -0.896696,0.44631 -0.655233,0.56739 -1.482703,1.0189 -2.021186,1.10286 -1.654672,0.25799 -2.182575,0.67965 -2.182575,1.74329 0,0.52345 -0.06805,0.95164 -0.15123,0.95156 -0.428121,-4.8e-4 -0.992507,-1.04979 -0.992507,-1.84528 0,-1.1674 0.625845,-1.73918 2.625496,-2.39874 1.199991,-0.3958 1.692435,-0.71591 2.135763,-1.38835 0.9526,-1.44489 0.737478,-1.65152 -0.827451,-0.79473 -1.59832,0.87506 -2.889925,0.98115 -4.417046,0.36282 -0.816105,-0.33045 -1.111578,-0.34717 -1.593667,-0.0901 -1.194321,0.63682 -1.292751,1.56673 -0.282539,2.66923 0.492449,0.53743 0.559391,0.70267 0.233375,0.57608 -0.251428,-0.0977 -0.502036,-0.17753 -0.55691,-0.17753 -0.264693,0 -0.875311,-1.60855 -0.875311,-2.30584 0,-1.28964 1.130372,-1.80725 3.949337,-1.80843 3.214575,-9.8e-4 4.518877,-0.71753 5.37184,-2.94962 0.514679,-1.34684 0.417693,-1.9089 -0.361909,-2.09737 -1.058648,-0.25592 -1.334359,-0.5868 -1.334359,-1.60137 0,-0.91139 0.0062,-0.91696 0.395657,-0.35432 0.524909,0.75837 1.273265,0.72378 1.795654,-0.083 0.536373,-0.8284 0.203861,-2.14266 -0.871739,-3.44558 l -0.730766,-0.8852 -0.910443,0.92134 c -0.500745,0.50672 -1.159057,1.41447 -1.46292,2.01721 -0.419085,0.8313 -0.607728,1.00888 -0.781316,0.73548 -0.179494,-0.28268 -0.418748,-0.13852 -1.109415,0.66841 -1.245472,1.45514 -1.173036,1.67116 0.561783,1.67533 1.908554,0.005 2.605178,0.20957 2.605178,0.76659 0,0.24911 0.17156,0.597 0.381245,0.77311 0.393009,0.33007 0.496885,1.19619 0.228384,1.90426 -0.128845,0.33978 -0.226073,0.31277 -0.618855,-0.17186 -0.406156,-0.50115 -0.534723,-0.53258 -1.001214,-0.24477 -0.693773,0.42803 -1.063835,0.1817 -0.874407,-0.58205 0.16074,-0.64811 -0.435325,-1.16479 -1.339031,-1.1607 -0.69083,0.003 -4.834261,3.20771 -5.043154,3.90042 -0.263135,0.87259 -0.874101,1.48601 -1.311067,1.31632 -0.223827,-0.0869 -0.643121,0.13894 -1.018492,0.5486 -0.350927,0.38298 -0.684181,0.64963 -0.74057,0.59258 -0.05639,-0.0571 0.110739,-0.78519 0.371396,-1.61807 0.38267,-1.22273 0.639827,-1.60655 1.335522,-1.99332 0.92742,-0.51562 2.826745,-2.26031 2.652543,-2.4366 -0.05827,-0.059 -0.678917,0.0853 -1.379209,0.32075 -0.876661,0.29466 -1.231426,0.53828 -1.138963,0.78211 0.179599,0.47361 -1.752024,1.02066 -2.387924,0.67627 -0.49312,-0.26707 -1.768107,-0.10382 -1.986878,0.25439 -0.221918,0.36337 -0.870818,0.26078 -0.870818,-0.13766 0,-0.2003 0.502089,-0.90975 1.115757,-1.57658 0.997309,-1.08368 1.206424,-1.19821 1.969769,-1.07883 0.9164,0.14333 3.522728,-0.27954 3.522728,-0.57155 0,-0.097 -0.862372,-0.36584 -1.916381,-0.5973 -1.488659,-0.32691 -2.057472,-0.35578 -2.548531,-0.12938 -0.47568,0.21933 -0.705935,0.21681 -0.930252,-0.0102 -0.431062,-0.43622 -0.908137,-0.3733 -1.745723,0.23025 -0.736879,0.53098 -0.738186,0.531 -0.738186,0.0119 0,-0.28595 0.296444,-0.72786 0.658762,-0.98201 0.36232,-0.25417 0.845234,-0.66466 1.07314,-0.91223 0.552514,-0.60014 1.355241,-0.56825 2.177826,0.0865 0.663698,0.52832 3.725539,1.23626 5.427071,1.25482 0.701903,0.008 0.98832,-0.20506 1.956005,-1.45274 1.07998,-1.39246 1.273001,-2.07907 0.500097,-1.77893 -0.579444,0.22501 -0.404513,-0.24671 0.216332,-0.58337 0.660262,-0.35804 2.342474,-2.69467 2.018619,-2.80391 -0.119284,-0.0403 -1.122656,0.3838 -2.229717,0.9423 -2.211425,1.11566 -4.871725,1.90831 -5.916734,1.76296 l -0.671046,-0.0933 0.63541,-0.28094 c 0.889191,-0.39313 1.913097,-1.56793 2.390912,-2.74323 0.530007,-1.30368 0.521897,-1.32705 -0.276782,-0.79748 -3.054432,2.02528 -6.373977,2.84353 -8.785927,2.16568 -0.902324,-0.25359 -1.320233,-0.75432 -0.635409,-0.76135 1.074988,-0.0109 6.287241,-3.55212 6.289602,-4.27303 7.63e-4,-0.19664 -0.835486,-0.28617 -2.604229,-0.27882 -2.790155,0.0115 -4.074726,-0.34134 -5.225823,-1.43566 l -0.594273,-0.56497 2.125693,-0.28507 c 1.704551,-0.2286 2.387189,-0.4582 3.44558,-1.15888 0.725936,-0.48059 1.321941,-0.9606 1.324452,-1.06671 0.0025,-0.10609 -0.471469,-0.1929 -1.053291,-0.1929 -1.594373,0 -3.67165,-0.76481 -4.854596,-1.78737 l -1.056507,-0.91325 2.153165,-0.1318 c 1.704149,-0.10431 2.324786,-0.25546 2.976151,-0.72482 1.02149,-0.73605 1.032642,-0.96567 0.0565,-1.16323 -1.428742,-0.28917 -3.505191,-1.46364 -4.441095,-2.51196 -0.512524,-0.5741 -0.871622,-1.10476 -0.797996,-1.17927 0.07363,-0.0745 0.499895,-0.007 0.947261,0.15148 0.911187,0.32144 3.790274,0.39302 3.782458,0.094 -0.0028,-0.10609 -0.584779,-0.54011 -1.293347,-0.96449 -1.430677,-0.85689 -3.258274,-2.70744 -3.884906,-3.9337 L -25,-19.702331 l 1.080326,0.49624 c 0.594181,0.27294 1.637607,0.49879 2.318725,0.50189 1.072296,0.005 1.195961,-0.046 0.921994,-0.38016 -0.174024,-0.21219 -0.451524,-0.3858 -0.616673,-0.3858 -0.706905,0 -3.791295,-4.36994 -3.378928,-4.78725 0.07293,-0.0738 0.689595,0.15145 1.370367,0.50053 0.680772,0.34911 1.635729,0.67518 2.122124,0.72461 l 0.884355,0.0899 -0.08755,-1.00113 -0.08755,-1.00113 0.812825,0.93682 c 0.447057,0.51527 0.921769,0.93683 1.054917,0.93683 0.515268,0 3.330207,1.56724 3.806264,2.11917 0.840323,0.97425 1.227358,2.11052 1.064599,3.12548 -0.113992,0.71085 -0.034,1.07045 0.32826,1.47581 0.337896,0.37811 0.473581,0.90308 0.460667,1.78236 -0.0166,1.12914 0.04838,1.27434 0.690522,1.54351 0.982104,0.41167 1.309934,0.88494 1.474012,2.12795 0.13808,1.04605 0.16143,1.06828 1.041156,0.99149 0.621202,-0.0542 1.113125,0.0912 1.588357,0.46945 0.627195,0.49925 0.724151,0.51188 1.089679,0.14199 0.220675,-0.22332 0.639729,-0.5352 0.93123,-0.69307 l 0.530002,-0.28705 -0.520074,-0.41858 c -0.639267,-0.51452 -1.018939,-1.24254 -1.090154,-2.0904 -0.107567,-1.28065 -0.02255,-1.35286 0.784253,-0.66587 0.430093,0.36623 0.895758,0.66587 1.034807,0.66587 0.597264,0 0.979,-0.79285 0.979,-2.03332 0,-1.09612 -0.09758,-1.36316 -0.626211,-1.71367 -0.563649,-0.37373 -0.703105,-0.3764 -1.395877,-0.0266 -0.729528,0.36829 -0.756518,0.3637 -0.517525,-0.0881 0.541348,-1.02361 0.09246,-1.03403 -1.354128,-0.0314 -1.381115,0.95723 -1.989939,1.13451 -2.81115,0.81856 -0.982644,-0.37807 -1.32557,-1.30022 -0.82871,-2.22848 l 0.396665,-0.74107 0.01016,0.69827 c 0.01972,1.35306 1.428725,1.53466 3.614715,0.46588 0.586239,-0.28663 1.330339,-0.52114 1.653556,-0.52114 0.86923,0 0.718091,-0.41557 -0.46712,-1.2844 -1.383946,-1.01451 -2.597661,-1.05089 -3.093759,-0.0928 l -0.352328,0.68049 -0.545362,-0.55189 c -1.191382,-1.20562 -0.300048,-3.48292 1.443327,-3.68759 0.438365,-0.0514 0.709091,-0.25999 0.770799,-0.59372 0.208201,-1.12599 1.039687,-1.15758 3.594604,-0.13651 2.209083,0.88284 2.923957,0.95456 3.283769,0.3294 0.230767,-0.40094 0.259908,-0.38618 0.266792,0.13503 0.006,0.44851 -0.172409,0.6216 -0.763771,0.74128 -0.735253,0.14881 -0.751313,0.17873 -0.341853,0.63659 0.488398,0.54613 1.372827,0.62938 1.825012,0.17178 0.237218,-0.24005 0.304997,-0.18491 0.304997,0.24816 0,0.30624 -0.222073,0.67707 -0.4935,0.82406 -0.48424,0.26226 -0.482566,0.29234 0.0894,1.60386 0.584587,1.34045 1.166584,1.8972 1.166584,1.11599 0,-0.22962 0.237159,-0.88792 0.527021,-1.46288 l 0.52702,-1.04541 -0.540298,-0.38295 c -0.77022,-0.54594 -0.513934,-0.94114 0.623161,-0.96095 1.131549,-0.0197 1.477517,-0.52124 0.526228,-0.76286 -0.444296,-0.11284 -0.646467,-0.3389 -0.646467,-0.72285 0,-0.54302 0.01001,-0.54482 0.357354,-0.0642 0.398556,0.55157 0.747119,0.48963 3.871809,-0.68814 1.30873,-0.49329 1.667474,-0.53883 2.223932,-0.28224 0.396691,0.1829 0.663487,0.51498 0.663487,0.82582 0,0.35638 0.167559,0.51993 0.532653,0.51993 1.936674,0 3.004446,2.64601 1.527211,3.78458 -0.577665,0.44523 -0.670037,0.41376 -1.011447,-0.34451 -0.267889,-0.59499 -0.411389,-0.65755 -1.208161,-0.5267 -0.914235,0.15013 -2.636057,1.27972 -2.636057,1.72936 0,0.13427 0.200155,0.24466 0.444787,0.24531 0.244633,7.8e-4 1.131028,0.28727 1.969768,0.63691 0.83874,0.34963 1.764598,0.63845 2.057458,0.6418 0.637918,0.008 1.367498,-0.74267 1.389861,-1.42875 0.01326,-0.40597 0.06033,-0.38218 0.263786,0.13328 0.58031,1.4701 -0.515276,2.78981 -2.010064,2.42126 -0.376413,-0.0928 -1.162488,-0.49843 -1.746836,-0.90141 -1.473995,-1.01648 -2.122894,-0.96506 -1.17648,0.0932 0.416566,0.46581 0.406794,0.46845 -0.317705,0.0861 -0.969212,-0.51146 -1.213456,-0.499 -1.739,0.0887 -0.320828,0.35874 -0.414486,0.84085 -0.357097,1.83822 0.100256,1.74249 0.576384,2.10748 1.69639,1.30045 l 0.795951,-0.57356 v 0.95775 c 0,0.62532 -0.220546,1.25035 -0.635409,1.80077 -0.713209,0.94625 -0.768657,1.13455 -0.334086,1.13455 0.165728,0 0.557762,0.24379 0.871187,0.54176 l 0.569863,0.54175 0.590254,-0.56328 c 0.459744,-0.43874 0.800997,-0.5355 1.543368,-0.43764 0.907997,0.11971 0.953117,0.0909 0.953117,-0.60937 0,-1.16666 0.532961,-2.04751 1.559537,-2.57749 0.88369,-0.45621 0.94084,-0.55458 0.80703,-1.389 -0.0967,-0.60323 -0.009,-1.10777 0.26969,-1.53696 0.26219,-0.40493 0.41371,-1.18599 0.41371,-2.1326 0,-2.07439 0.88031,-3.13487 3.68599,-4.4404 1.19814,-0.55751 2.3108,-1.27517 2.6408,-1.70327 l 0.57027,-0.73986 -0.16401,0.76681 c -0.0902,0.42176 -0.18377,0.88472 -0.20794,1.02881 -0.081,0.48291 1.71608,0.12041 3.18787,-0.64304 l 1.45265,-0.75352 -0.26114,0.70069 c -0.52623,1.41189 -2.15837,3.65034 -3.08082,4.22529 -0.52116,0.32484 -0.95066,0.67743 -0.95442,0.78352 -0.0138,0.38962 2.18639,0.16653 3.2716,-0.33172 0.61492,-0.28232 1.16265,-0.46817 1.21719,-0.41299 0.15037,0.15218 -1.65653,2.51142 -2.55755,3.33935 -0.43688,0.40144 -1.36574,1.0944 -2.06412,1.53988 -0.98326,0.62723 -1.15999,0.83139 -0.78322,0.90483 0.69374,0.13519 3.48992,-0.1032 4.04845,-0.34517 0.44687,-0.19359 0.45031,-0.16436 0.0686,0.58258 -0.68065,1.33198 -2.78283,2.64068 -4.88182,3.03917 -1.1287,0.21428 -1.01159,0.59748 0.40621,1.32918 0.86678,0.44732 1.55268,0.5787 3.02127,0.5787 h 1.89993 l -0.71284,0.75295 c -0.97017,1.02474 -2.87667,1.80838 -4.8542,1.99525 -0.90456,0.0854 -1.64465,0.22997 -1.64465,0.32109 0,0.0911 0.6284,0.55106 1.39646,1.02212 1.09273,0.67019 1.87601,0.92078 3.60142,1.15216 l 2.20498,0.2957 -0.81718,0.69584 c -1.14819,0.97769 -2.56859,1.31639 -5.43256,1.29541 -1.36295,-0.0101 -2.4781,0.0698 -2.4781,0.17724 0,0.72369 3.5531,3.27814 5.5914,4.01987 0.69906,0.25439 1.27102,0.54166 1.27102,0.63838 0,0.26366 -2.11779,0.75133 -3.26282,0.75133 -1.44559,0 -4.01372,-0.86968 -5.63291,-1.90755 -1.30429,-0.83603 -1.40345,-0.8615 -1.480949,-0.38032 -0.128713,0.79929 1.892589,3.2867 2.688229,3.30812 0.17474,0.005 0.3177,0.13921 0.3177,0.29889 0,0.76887 -4.586921,-0.55263 -7.307201,-2.10518 -0.753489,-0.43005 -1.33436,-0.63123 -1.33436,-0.46215 0,0.4055 1.182598,2.01533 2.002436,2.72583 0.536631,0.46506 0.579732,0.57767 0.221496,0.5787 -0.244632,7.8e-4 -0.444787,0.12649 -0.444787,0.27951 0,0.27169 1.655539,2.4801 2.160392,2.88187 0.621355,0.49447 5.451034,-0.36138 6.451904,-1.14332 0.72652,-0.5676 1.24516,-0.59948 1.78709,-0.10985 2.26327,2.0448 2.75998,2.86931 1.14921,1.90757 -0.79597,-0.47525 -0.98223,-0.49902 -1.54067,-0.19657 -0.5085,0.27539 -0.73547,0.28068 -1.13762,0.0265 -0.40653,-0.25692 -0.86429,-0.23229 -2.39888,0.12899 -1.04306,0.24558 -1.89648,0.5291 -1.89648,0.63004 0,0.30185 2.34936,0.69912 3.26857,0.5527 0.76451,-0.12177 0.97093,-0.009 1.96977,1.07637 1.1585,1.25884 1.48788,2.1488 0.67097,1.81286 -1.17436,-0.48293 -1.93923,-0.60955 -2.3472,-0.3886 -0.61786,0.33462 -2.20545,-0.15237 -2.35256,-0.72164 -0.1165,-0.45087 -2.129518,-1.26029 -2.415235,-0.97116 -0.193584,0.1959 2.183665,2.46647 2.582345,2.46647 0.63681,0 1.13581,0.9231 1.8075,3.34364 0.17205,0.61999 0.14739,0.61308 -0.68893,-0.1929 -0.47705,-0.45976 -1.11708,-0.83592 -1.42229,-0.83592 -0.38032,0 -0.60523,-0.20282 -0.71479,-0.6446 -0.18308,-0.73813 -2.222473,-2.68265 -3.687353,-3.5158 -0.545369,-0.31018 -0.991578,-0.6584 -0.991578,-0.77381 0,-0.11541 -0.325397,-0.20984 -0.723099,-0.20984 -0.711643,0 -1.717144,0.78847 -1.406448,1.10289 0.08747,0.0884 0.08637,0.35258 -0.0025,0.5868 -0.1276,0.3365 -0.237458,0.36206 -0.523481,0.12185 -0.400361,-0.33624 -1.411139,0.0416 -1.411139,0.52752 0,0.51303 -0.449535,-0.0267 -0.574877,-0.69024 -0.169766,-0.89868 0.574993,-2.61469 1.210286,-2.78863 0.27958,-0.0766 1.223162,-0.14076 2.096851,-0.1427 0.873687,-0.002 1.588522,-0.10028 1.588522,-0.2185 0,-0.11824 -0.415962,-0.75528 -0.924357,-1.41563 C 6.82362,7.950469 6.661677,7.845789 6.404016,8.202389 6.14876,8.555639 6.04253,8.468859 5.648902,7.585509 5.396961,7.020119 4.744554,6.116549 4.199107,5.577559 3.21611,4.606219 3.203123,4.602039 2.723247,5.102349 c -0.664852,0.69325 -1.544126,2.35087 -1.544126,2.91117 0,0.58146 1.029401,1.58023 1.628699,1.58023 0.248709,0 0.511682,-0.23018 0.584382,-0.51152 0.170525,-0.65986 0.582719,-0.40647 0.582719,0.35823 0,0.70047 -0.626239,1.3069 -1.588523,1.53825 -0.779659,0.18746 -0.876666,0.74941 -0.361908,2.09645 0.862707,2.2576 1.824224,2.7778 5.456682,2.95226 2.805009,0.13472 2.925524,0.16461 3.529986,0.87574 0.461952,0.54347 0.584681,0.912 0.468705,1.40737 -0.191557,0.81814 -0.925978,1.88128 -1.413109,2.04559 -0.197125,0.0665 -0.0472,-0.25337 0.33317,-0.71082 0.768612,-0.92437 0.811706,-1.11334 0.421964,-1.85028 -0.432408,-0.81762 -1.347633,-1.03458 -2.551342,-0.6048 -1.590052,0.5677 -2.730124,0.46097 -4.273825,-0.40009 -0.756854,-0.42216 -1.422935,-0.72017 -1.480181,-0.66225 -0.201973,0.20439 0.694012,1.65752 1.338157,2.17027 0.358833,0.28563 1.010125,0.59883 1.447314,0.69601 2.197685,0.48846 3.131103,1.79975 2.394229,3.36346 -0.482178,1.02322 -0.907654,1.14645 -0.73108,0.21172 0.167138,-0.88477 -0.791073,-1.91587 -1.780435,-1.91587 -0.919183,0 -1.616216,-0.3568 -2.671245,-1.36734 -0.716485,-0.68627 -0.824837,-0.72481 -0.817024,-0.29064 0.005,0.27531 0.17246,0.78991 0.372238,1.14356 0.694296,1.22907 0.483693,2.13045 -0.832813,3.56445 -0.667731,0.72733 -1.268193,1.31063 -1.334359,1.29624 -0.06617,-0.0144 -0.591866,-0.56416 -1.168225,-1.22171 z"
-                                                               id="path937"/>
-                                       </g>
-                               </g>
-                               <rect
-                                               ry="16"
-                                               rx="16"
-                                               y="217"
-                                               x="-8.8817842e-16"
-                                               height="80"
-                                               width="128"
-                                               id="rect943"
-                                               style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.74999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/>
-                       </g>
-               </clipPath>
-               <clipPath
-                               clipPathUnits="userSpaceOnUse"
-                               id="clipPath1034">
-                       <rect
-                                       ry="60.000004"
-                                       rx="60.000004"
-                                       y="0"
-                                       x="-6.0000002e-06"
-                                       height="300.00003"
-                                       width="480.00003"
-                                       id="rect1036"
-                                       style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.74999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"/>
-               </clipPath>
-       </defs>
-       <sodipodi:namedview
-                       id="base"
-                       pagecolor="#ffffff"
-                       bordercolor="#666666"
-                       borderopacity="1.0"
-                       inkscape:pageopacity="0.0"
-                       inkscape:pageshadow="2"
-                       inkscape:zoom="0.98994949"
-                       inkscape:cx="208.02796"
-                       inkscape:cy="146.22173"
-                       inkscape:document-units="mm"
-                       inkscape:current-layer="layer1"
-                       showgrid="false"
-                       inkscape:snap-nodes="false"
-                       inkscape:snap-bbox="true"
-                       inkscape:snap-bbox-edge-midpoints="true"
-                       inkscape:snap-bbox-midpoints="true"
-                       inkscape:bbox-nodes="true"
-                       fit-margin-top="0"
-                       fit-margin-left="0"
-                       fit-margin-right="0"
-                       fit-margin-bottom="0"
-                       inkscape:window-width="1920"
-                       inkscape:window-height="1017"
-                       inkscape:window-x="-8"
-                       inkscape:window-y="-8"
-                       inkscape:window-maximized="1"/>
-       <metadata
-                       id="metadata5">
-               <rdf:RDF>
-                       <cc:Work
-                                       rdf:about="">
-                               <dc:format>image/svg+xml</dc:format>
-                               <dc:type
-                                               rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-                               <dc:title></dc:title>
-                       </cc:Work>
-               </rdf:RDF>
-       </metadata>
-       <g
-                       inkscape:label="Layer 1"
-                       inkscape:groupmode="layer"
-                       id="layer1"
-                       transform="translate(0,-217)">
-               <g
-                               id="g1032"
-                               transform="matrix(0.26666666,0,0,0.26666666,1.32e-6,217)"
-                               style="stroke-width:0.9921875"
-                               clip-path="url(#clipPath1034)">
-                       <rect
-                                       id="rect988"
-                                       y="0"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#0039a6;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect990"
-                                       y="42.856998"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#ffffff;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect992"
-                                       y="85.713997"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#0039a6;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect994"
-                                       y="128.571"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#ffffff;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect996"
-                                       y="171.429"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#0039a6;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect998"
-                                       y="214.286"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#ffffff;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect1000"
-                                       y="257.14301"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#0039a6;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect1002"
-                                       y="85.713997"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#cc0000;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect1004"
-                                       y="257.14301"
-                                       x="0"
-                                       height="42.856998"
-                                       width="480"
-                                       style="fill:#cc0000;stroke-width:0.9921875"/>
-                       <rect
-                                       id="rect1006"
-                                       y="0"
-                                       x="0"
-                                       height="171.429"
-                                       width="171.429"
-                                       style="fill:#00cc00;stroke-width:0.9921875"/>
-                       <g
-                                       id="g1010"
-                                       transform="matrix(0.857,0,0,0.857,85.714,85.714)"
-                                       style="stroke-width:0.9921875">
-                               <path
-                                               id="path1008"
-                                               d="m -0.4979217,83.26601 c -0.145988,-0.4037 -1.237967,-2.04811 -2.426622,-3.65425 -3.449295,-4.66079 -4.365689,-6.62777 -4.376537,-9.39392 -0.0072,-1.76577 0.274004,-2.92395 1.111782,-4.58342 0.337642,-0.66879 0.541464,-1.21598 0.452931,-1.21595 -0.08853,1e-5 -0.87165,0.1338 -1.740276,0.29732 -8.2304073,1.5492 -13.0095363,-0.66068 -14.0921003,-6.51624 -0.124856,-0.67532 -0.227006,-1.26578 -0.227006,-1.31213 0,-0.0464 0.591532,0.45097 1.314512,1.10518 0.722978,0.65418 2.020995,1.53857 2.884486,1.96528 1.441057,0.71213 1.717848,0.77568 3.370782,0.7738 1.394326,-10e-4 2.023059,-0.10424 2.785393,-0.455 3.9089623,-1.7982 5.7490643,-7.34628 3.8103923,-11.48871 -0.795102,-1.69893 -1.897149,-2.94272 -3.1406943,-3.54465 -1.674122,-0.81036 -2.181779,-1.78637 -1.754465,-3.37314 0.359727,-1.3358 1.079507,-2.00676 2.308949,-2.15236 3.0819463,-0.36497 3.4291723,-1.37705 3.4448103,-10.04085 0.01,-5.52454 -0.124875,-7.10568 -1.16606,-13.67151 l -0.448445,-2.82796 -0.708217,0.82768 c -1.6324183,1.90784 -2.7843653,4.91142 -3.0630343,7.98656 l -0.05722,0.63166 -0.566893,-0.94749 c -0.311784,-0.52113 -0.686783,-1.39755 -0.833329,-1.94762 -0.146543,-0.55009 -0.331171,-1.00014 -0.41028,-1.00014 -0.07911,0 -2.230636,2.33466 -4.781159,5.18815 l -4.637319,5.18812 0.702256,1.26693 c 0.386236,0.69679 0.878541,1.503 1.094009,1.79157 0.369253,0.49451 0.437524,0.50956 1.188256,0.26183 1.574244,-0.51949 2.863562,0.17935 3.203478,1.73638 0.08097,0.37093 0.405484,1.05343 0.721128,1.51664 1.190229,1.74669 1.351641,3.76197 0.44381,5.54127 -0.540884,1.06012 -2.839561,3.51987 -2.651861,2.83768 0.826914,-3.00534 0.157558,-5.49427 -1.394142,-5.18395 -1.272162,0.2544 -2.315529,-0.63998 -2.907222,-2.49208 -0.135466,-0.42403 -0.360158,-0.8167 -0.499333,-0.8726 -0.139164,-0.056 -0.76173,-0.3042 -1.383468,-0.55175 l -1.130442,-0.45011 0.130204,0.95424 c 0.07163,0.52482 0.186696,1.36955 0.255722,1.87715 0.09562,0.70307 0.246203,0.97789 0.63221,1.15377 0.646815,0.29467 1.34623,1.43548 1.347241,2.1975 8.75e-4,0.66321 -0.438209,1.6204 -0.930879,2.02924 -0.221291,0.18364 -0.284588,0.45214 -0.194908,0.82688 0.355181,1.48415 1.018535,2.09221 2.916465,2.67331 l 0.842298,0.25792 -1.052871,0.46596 c -1.307335,0.57859 -3.432781,0.78747 -4.311123,0.42368 -0.912502,-0.37793 -1.866874,-1.55373 -2.164613,-2.66684 -0.174256,-0.65145 -0.458287,-1.0983 -0.890964,-1.40165 -0.349334,-0.24492 -0.750589,-0.59091 -0.891674,-0.76888 -0.421313,-0.53141 -0.306301,-1.5798 0.265781,-2.42271 0.534048,-0.7869 0.534924,-0.7958 0.282504,-2.87831 -0.139262,-1.14892 -0.312873,-2.06238 -0.385807,-2.0299 -0.0729,0.0325 -0.535154,0.49977 -1.027171,1.03842 -0.718883,0.78702 -0.931738,1.20773 -1.083855,2.14229 -0.363079,2.23063 -1.013458,2.98651 -2.432064,2.82663 -0.85103,-0.0959 -1.001266,-0.0444 -1.459579,0.50019 -0.708812,0.8423 -0.8576,2.11772 -0.436577,3.74237 0.189715,0.73204 0.30698,1.36891 0.260593,1.41529 -0.202955,0.20293 -2.318421,-2.32972 -2.787525,-3.33723 -0.827461,-1.77719 -0.658132,-3.33353 0.562899,-5.17377 0.330415,-0.49797 0.600758,-1.18961 0.600758,-1.53698 0,-1.4549 0.948061,-2.29507 2.589797,-2.29507 0.857675,0 0.927179,-0.0535 2.219917,-1.70777 0.733988,-0.93927 1.255,-1.77516 1.157815,-1.85752 -1.636152,-1.38657 -1.912757,-1.50765 -2.885252,-1.26278 -1.776799,0.44735 -3.082277,-0.44118 -3.082277,-2.09784 0,-0.77432 -0.652324,-1.28572 -1.640021,-1.28572 -0.830858,0 -1.311974,0.2323 -2.518846,1.21615 -0.492215,0.40126 -0.894937,0.66772 -0.894937,0.59213 0,-0.65903 1.432025,-3.62491 2.136748,-4.42545 1.403237,-1.594 2.666069,-1.96836 4.315462,-1.27926 0.443477,0.1853 1.068422,0.26898 1.519906,0.20355 0.438908,-0.0636 0.989137,0.005 1.286864,0.16217 0.705814,0.37082 1.415886,1.47331 1.581968,2.45622 0.130142,0.77024 0.22014,0.84971 1.804119,1.59295 0.916928,0.43025 1.750812,0.75016 1.853082,0.71093 0.19284,-0.074 10.560279,-12.10327 10.560279,-12.25304 0,-0.0465 -0.416648,0.004 -0.925879,0.11274 -0.509232,0.10862 -1.369037,0.16818 -1.91067,0.13238 l -0.98479,-0.0651 1.365624,-0.89555 c 2.206226,-1.44681 3.81776,-3.22978 4.892181,-5.41262 1.626562,-3.30457 1.858797,-4.54205 1.858789,-9.90452 0,-4.68455 -0.369126,-8.03303 -1.230167,-11.15938 l -0.289952,-1.05276 -0.01887,1.79523 c -0.07107,6.77837 -2.199454,13.56837 -6.046739,19.29062 -1.3945,2.07409 -1.677776,2.32759 -1.473179,1.31829 0.81585,-4.02475 0.863275,-4.57893 0.863275,-10.08671 0,-6.64968 -0.414792,-9.46548 -2.140145,-14.52826 -0.8003,-2.34834 -0.924337,-2.41804 -0.749404,-0.4211 0.285138,3.25507 0.149043,10.84517 -0.243513,13.58075 -1.02437,7.13849 -3.231402,13.30615 -6.541164,18.27965 -0.669171,1.00556 -1.258589,1.82828 -1.309819,1.82828 -0.05125,0 -0.0281,-2.15555 0.05141,-4.79011 0.298963,-9.90748 -0.786777,-22.54379 -2.766045,-32.1925 -0.305392,-1.48879 -0.572312,-2.72611 -0.593141,-2.7496 -0.02085,-0.0235 -0.04321,2.29785 -0.04966,5.15857 -0.008,3.37346 -0.136143,6.33377 -0.365585,8.42382 -1.47111,13.40078 -5.922023,25.62081 -13.115915,36.00994 -1.641117,2.37002 -3.46265,4.71836 -3.57373,4.60728 -0.04321,-0.0433 0.44584,-2.39229 1.08687,-5.22011 2.866205,-12.64386 4.477349,-23.02068 5.146251,-33.14519 0.38283,-5.79453 0.213929,-16.26987 -0.332087,-20.59665 l -0.128095,-1.01511 -0.605758,1.80247 c -1.93418,5.75526 -6.413075,11.28668 -13.57343,16.76313 -1.05494,0.80685 -1.976792,1.46699 -2.048572,1.46699 -0.07179,0 0.472184,-1.20804 1.208814,-2.68456 3.005245,-6.02381 3.845807,-9.83991 4.324757,-19.6342 0.244222,-4.9941 0.629927,-8.60698 1.232451,-11.54427 l 0.395972,-1.93038 -2.049855,1.96733 c -2.013904,1.93279 -4.939761,4.06676 -7.023559,5.12259 -1.751282,0.88735 -4.850162,1.92858 -7.11074,2.38922 -1.173095,0.23903 -2.170954,0.39654 -2.217472,0.35002 -0.04648,-0.0465 0.439313,-0.53208 1.079618,-1.07907 1.760578,-1.50395 4.965413,-5.3448 6.935767,-8.3122 2.283913,-3.43961 4.458409,-7.4804 6.977861,-12.96669 3.210501,-6.99109 3.919323,-8.48056 5.218238,-10.96524 2.245695,-4.29573 4.802489,-7.14562 7.299545,-8.13627 0.922147,-0.36584 1.587267,-0.45868 3.263912,-0.45557 3.798607,0.007 6.358608,1.22631 7.450204,3.54836 0.592297,1.25995 0.594997,1.68011 0.0087,1.3664 -0.240681,-0.1288 -0.574366,-0.18171 -0.741516,-0.11762 -0.225925,0.0868 -0.08971,0.33731 0.530849,0.97669 0.982889,1.0127 1.366897,2.02298 1.230126,3.23628 -0.218157,1.9353 -1.200434,3.22208 -4.265766,5.5882 -1.209053,0.93327 -2.304846,1.89594 -2.435091,2.13928 -0.369317,0.69 -0.07323,1.64843 1.067022,3.45401 1.389277,2.19988 1.40167,2.83393 0.103462,5.29485 -0.828195,1.56993 -0.947583,1.96083 -0.947583,3.10253 0,1.43008 0.219023,1.81099 1.042347,1.81279 1.584045,0.004 2.904679,0.86911 3.519135,2.30674 0.194067,0.45406 0.423595,2.18443 0.587602,4.42981 0.148017,2.0266 0.342201,3.85777 0.431506,4.06931 0.219066,0.51888 0.964626,0.77296 2.277036,0.77596 2.183744,0.005 4.048415,0.74186 5.254125,2.07631 0.721612,0.79865 0.941694,1.33476 1.348593,3.2851 0.206695,0.9907 0.791465,1.36612 2.135052,1.37071 0.805633,0.004 1.036316,-0.11862 2.054271,-1.08131 l 1.14673,-1.08442 1.039832,1.08442 c 1.003813,1.04684 1.07977,1.08442 2.192647,1.08442 1.970776,0 2.200179,-0.32242 1.377142,-1.93555 -1.421376,-2.78584 -1.688058,-5.66045 -0.702001,-7.56709 l 0.317084,-0.61311 -0.794306,0.42567 c -0.43688,0.23413 -1.016882,0.4257 -1.288901,0.4257 -0.447926,0 -0.388592,-0.11712 0.629121,-1.24162 0.618036,-0.68288 1.540367,-2.03306 2.04963,-3.00041 1.909462,-3.62698 3.076334,-5.08175 6.6433,-8.28238 1.0302823,-0.92446 2.4291753,-2.38037 3.1086523,-3.23533 l 1.235424,-1.55449 -0.06105,-1.60514 c -0.07434,-1.95496 -0.225161,-2.02974 -1.970135,-0.97717 -1.9818213,1.19545 -3.7878443,1.6561 -5.9589663,1.51988 -1.000135,-0.0627 -2.139278,-0.23115 -2.531437,-0.37423 l -0.713015,-0.26018 1.555314,-0.56933 c 3.683552,-1.34837 7.6074843,-3.92422 8.4280933,-5.53257 0.489663,-0.95974 0.477997,-2.80622 -0.02157,-3.40806 -0.151679,-0.18273 -0.949805,-0.68358 -1.773623,-1.11299 -1.0194203,-0.53134 -2.0575033,-1.33717 -3.2500313,-2.52289 -2.062057,-2.05025 -2.706309,-2.28248 -4.334373,-1.56238 -0.811904,0.3591 -1.06129,0.60972 -1.425086,1.43205 l -0.440961,0.99676 -0.479283,-0.94296 c -1.396195,-2.74694 -1.494739,-5.49649 -0.285021,-7.95352 0.840245,-1.70661 3.103138,-4.0165 5.030308,-5.13478 0.748392,-0.43426 1.461854,-0.78957 1.585454,-0.78957 0.123607,0 0.581075,0.4672 1.016601,1.03825 0.749412,0.98259 1.991868,1.92212 3.4003343,2.57125 0.559771,0.25799 0.648145,0.42689 0.781391,1.49349 0.234265,1.8752 1.008819,2.98697 2.693662,3.86633 1.153842,0.60223 5.001235,0.6605 7.649785,0.11586 1.926541,-0.39616 3.089541,-0.86948 3.089541,-1.25741 0,-0.09 -0.548612,-0.27688 -1.219142,-0.41536 -1.657789,-0.34238 -3.254599,-1.39186 -4.157527,-2.73249 -1.645391,-2.44302 -3.227693,-3.58361 -5.339243,-3.84871 -0.814799,-0.10236 -1.672951,-0.30559 -1.907018,-0.45176 -0.509409,-0.31809 -1.430848,-1.97826 -1.216798,-2.1923 0.08299,-0.083 1.374651,-0.19505 2.870361,-0.24906 3.235874,-0.11685 5.040792,0.23657 6.887712,1.34862 2.688314,1.61865 7.117294,2.41074 11.1780677,1.99909 1.317603,-0.13357 3.019078,-0.38742 3.781048,-0.56412 0.761971,-0.17669 1.434485,-0.27219 1.49447,-0.21221 0.138148,0.13814 -0.471604,1.10535 -1.170716,1.85707 -0.295054,0.31726 -0.472439,0.64084 -0.39418,0.7191 0.26762,0.26759 3.439928,0.33359 4.553763,0.0947 0.611724,-0.13119 1.723959,-0.48322 2.471627,-0.78231 0.747675,-0.29909 1.411491,-0.49172 1.475146,-0.42805 0.06367,0.0636 -0.232102,0.58954 -0.657251,1.16864 -0.818858,1.1154 -2.658227,2.60899 -4.489136,3.64524 -0.60804,0.34413 -1.105525,0.67625 -1.105525,0.73807 0,0.27422 2.738491,-0.2266 3.749984,-0.68581 l 1.117797,-0.50747 -0.134422,0.46771 c -0.905379,3.15029 -4.188289,6.27932 -8.367282,7.97506 l -1.525166,0.6189 1.895176,-0.0876 c 1.71288,-0.0792 3.174225,-0.4428 5.211735,-1.29677 0.249332,-0.10449 0.368507,-0.0589 0.368507,0.14116 0,0.16286 -0.780244,0.66833 -1.737243,1.12547 -7.434081,3.55107 -10.2543557,8.17316 -8.903884,14.59241 0.626965,2.98021 1.266092,4.16245 3.376106,6.24503 1.855287,1.83116 2.444584,2.66879 4.396633,6.24933 0.421766,0.77361 1.249196,1.93431 1.83874,2.57929 0.979236,1.07134 1.028851,1.17273 0.573865,1.17273 -0.273924,0 -0.855485,-0.19157 -1.292356,-0.4257 l -0.794306,-0.42567 0.317083,0.61311 c 0.986058,1.90664 0.719375,4.78124 -0.702,7.56709 -0.823037,1.61313 -0.593635,1.93555 1.377142,1.93555 1.112878,0 1.188836,-0.0376 2.192649,-1.08442 l 1.039833,-1.08442 1.146728,1.08442 c 1.017955,0.96264 1.24864,1.08407 2.054271,1.0813 1.343588,-0.005 1.928357,-0.38001 2.135053,-1.37071 0.406899,-1.95033 0.626981,-2.48644 1.348593,-3.28509 1.20571,-1.33446 3.07038,-2.07133 5.254124,-2.07631 1.312412,-0.004 2.057972,-0.25708 2.277036,-0.77596 0.0893,-0.21154 0.283483,-2.04271 0.431508,-4.06931 0.164005,-2.24538 0.393536,-3.97575 0.587601,-4.42981 0.61159,-1.4309 1.913903,-2.2896 3.508604,-2.31345 0.969408,-0.0145 1.263451,-0.44329 1.263451,-1.84249 0,-0.70136 -0.07108,-1.30678 -0.157925,-1.34539 -0.08686,-0.0386 -0.560662,-0.83992 -1.052878,-1.78072 -1.200553,-2.29465 -1.20688,-3.11074 -0.03813,-4.91882 0.471237,-0.72903 0.988691,-1.4574 1.149887,-1.61856 0.377905,-0.37789 0.612418,-1.62631 0.382458,-2.03599 -0.09796,-0.17452 -1.23854,-1.13139 -2.534622,-2.12638 -3.227994,-2.47813 -4.21569,-3.75057 -4.43731,-5.7166 -0.13677,-1.21331 0.247239,-2.22358 1.230128,-3.23628 0.620558,-0.63938 0.756773,-0.89 0.530848,-0.97669 -0.16715,-0.0641 -0.500836,-0.0112 -0.741516,0.11762 -0.586241,0.3137 -0.583551,-0.10649 0.0088,-1.3664 0.997278,-2.1214 3.171153,-3.27529 6.728346,-3.5714 5.206204,-0.4334 8.32498,2.20075 12.462891,10.52628 0.863348,1.73707 2.360197,4.91119 3.326341,7.05357 5.064809,11.23111 8.274332,16.41765 13.327992,21.53787 3.24762,3.29042 3.30204,3.09 -0.59944,2.20753 -5.046073,-1.14136 -9.15775,-3.40585 -13.162177,-7.24901 l -2.049854,-1.96732 0.395971,1.93037 c 0.602533,2.9373 0.98823,6.55018 1.232452,11.54428 0.478957,9.79429 1.319512,13.61038 4.324758,19.6342 0.73663,1.47652 1.280593,2.68456 1.208813,2.68456 -0.255945,0 -4.00293,-2.9662 -6.12064,-4.84521 -2.510777,-2.2278 -4.609203,-4.60825 -6.388253,-7.24679 -1.585285,-2.35119 -2.341542,-3.84231 -3.113102,-6.13813 l -0.605763,-1.80247 -0.128097,1.01512 c -0.546017,4.32678 -0.714918,14.80212 -0.332086,20.59665 0.6689,10.12451 2.280053,20.50133 5.146259,33.14519 0.641029,2.82782 1.130118,5.17687 1.086869,5.22011 -0.111087,0.11111 -1.932613,-2.23726 -3.573738,-4.60728 -2.621817,-3.78633 -5.936109,-9.77985 -7.239552,-13.09191 -0.18918,-0.4807 -0.424328,-0.9287 -0.522555,-0.99553 -0.291513,-0.19834 -2.241565,-5.72705 -3.030435,-8.59175 -2.127802,-7.72691 -3.269293,-17.15647 -2.92144,-24.13321 0.08084,-1.62128 0.09914,-2.90038 0.04066,-2.84248 -0.175688,0.17397 -1.181825,5.29484 -1.731543,8.81293 -1.252809,8.01777 -1.929279,18.46398 -1.696088,26.19173 0.07951,2.63456 0.102625,4.79011 0.05141,4.79011 -0.05125,0 -0.640638,-0.82273 -1.309818,-1.82828 -3.309763,-4.9735 -5.516795,-11.14118 -6.541165,-18.27965 -0.392556,-2.7356 -0.528658,-10.3257 -0.243512,-13.58076 0.174925,-1.99694 0.05085,-1.92724 -0.749412,0.42111 -1.725352,5.06277 -2.140146,7.87857 -2.140146,14.52824 0,5.50779 0.04744,6.06197 0.863276,10.08671 0.204604,1.00932 -0.07864,0.75582 -1.473171,-1.31828 -3.847288,-5.72225 -5.975655,-12.51226 -6.04675,-19.29062 l -0.01879,-1.79524 -0.289451,1.05277 c -0.159192,0.57904 -0.402722,1.76339 -0.541172,2.63193 -0.13845,0.86854 -0.32057,1.62652 -0.404702,1.68444 -0.259701,0.17873 -0.622198,4.30017 -0.622198,7.07413 0,2.53964 0.317514,5.55139 0.60827,5.76968 0.07713,0.058 0.313559,0.67377 0.525413,1.3686 1.006479,3.30094 3.071288,6.05686 5.9547,7.94774 l 1.365617,0.89556 -0.984783,0.0651 c -0.54164,0.0358 -1.401431,-0.0237 -1.91068,-0.13239 -0.509231,-0.10862 -0.92588,-0.15934 -0.92588,-0.11274 0,0.14977 10.367442,12.17905 10.560282,12.25303 0.102275,0.0393 0.936155,-0.28069 1.853083,-0.71093 1.58398,-0.74325 1.673977,-0.82271 1.804119,-1.59296 0.166075,-0.98291 0.876162,-2.0854 1.581967,-2.45622 0.297729,-0.15644 0.847957,-0.22577 1.286874,-0.16216 0.451484,0.0654 1.07642,-0.0184 1.519896,-0.20356 0.950976,-0.3973 2.092132,-0.4023 2.846079,-0.0125 0.646546,0.3343 1.953259,1.70322 2.356831,2.469 0.142708,0.27081 0.325958,0.53976 0.407226,0.59765 0.141092,0.10049 1.052655,2.40888 1.052655,2.66562 0,0.0677 -0.152235,-0.004 -0.338319,-0.1576 C 42.74759,27.81947 42.43201,27.59468 42.232365,27.47435 42.03272,27.354 41.545343,27.04275 41.1493,26.78262 c -1.372159,-0.90126 -3.14169,-0.44436 -3.14169,0.8112 0,1.65666 -1.305481,2.54518 -3.082279,2.09783 -0.972486,-0.24486 -1.2491,-0.12386 -2.885251,1.26277 -0.09719,0.0824 0.423827,0.91825 1.157815,1.85754 1.292739,1.65428 1.362242,1.70775 2.219907,1.70775 1.641747,0 2.589808,0.84017 2.589808,2.29508 0,0.34737 0.270343,1.039 0.600765,1.53698 1.221032,1.84024 1.390345,3.39658 0.562883,5.17378 -0.469097,1.0075 -2.584571,3.54016 -2.787518,3.33722 -0.0464,-0.0464 0.07091,-0.68326 0.260592,-1.41529 0.421027,-1.62465 0.272246,-2.90007 -0.436576,-3.74237 -0.458312,-0.54463 -0.608557,-0.59611 -1.459577,-0.5002 -1.418607,0.15988 -2.068988,-0.596 -2.432066,-2.82662 -0.152115,-0.93456 -0.364972,-1.35528 -1.083861,-2.14229 -0.49201,-0.53865 -0.954238,-1.00592 -1.027164,-1.03841 -0.0729,-0.0325 -0.246546,0.88096 -0.385807,2.0299 -0.252413,2.0825 -0.251545,2.0914 0.282502,2.8783 0.572083,0.84292 0.687095,1.89129 0.265791,2.42272 -0.141092,0.17795 -0.542348,0.52395 -0.891673,0.76887 -0.432678,0.30336 -0.716718,0.7502 -0.890974,1.40166 -0.297745,1.1131 -1.252109,2.28891 -2.164619,2.66683 -0.878343,0.36378 -3.003773,0.1549 -4.311117,-0.42369 l -1.05287,-0.46596 0.842307,-0.2579 c 1.897921,-0.58112 2.561274,-1.18916 2.916449,-2.67332 0.0897,-0.37474 0.02643,-0.64324 -0.194902,-0.82689 -0.49267,-0.40883 -0.93177,-1.36603 -0.930879,-2.02923 7.97e-4,-0.76202 0.700426,-1.90284 1.347241,-2.19751 0.386007,-0.17586 0.536602,-0.45068 0.632211,-1.15376 0.069,-0.5076 0.184101,-1.35232 0.255714,-1.87715 l 0.130213,-0.95425 -1.130443,0.45012 c -0.62173,0.24756 -1.244303,0.49585 -1.383469,0.55176 -0.139175,0.056 -0.363874,0.44856 -0.499332,0.87258 -0.591693,1.85212 -1.63506,2.74649 -2.907226,2.49209 -1.5517,-0.31032 -2.221054,2.17861 -1.394133,5.18395 0.187699,0.68219 -2.110985,-1.77756 -2.651869,-2.83767 -0.90783,-1.77932 -0.746418,-3.79459 0.443803,-5.54129 0.315652,-0.46321 0.640162,-1.14569 0.721142,-1.51663 0.33991,-1.55703 1.629227,-2.25587 3.203482,-1.73637 0.750725,0.24773 0.819003,0.23268 1.188249,-0.26185 0.215466,-0.28855 0.707771,-1.09477 1.094009,-1.79157 l 0.702255,-1.26691 -4.637313,-5.18813 c -2.55053,-2.85349 -4.749428,-5.18814 -4.886454,-5.18814 -0.137018,0 -0.369023,0.45005 -0.515568,1.00012 -0.146544,0.55009 -0.521544,1.42651 -0.833336,1.94764 l -0.566885,0.94748 -0.05722,-0.63165 c -0.278699,-3.07511 -1.430648,-6.0787 -3.0630647,-7.98653 l -0.708217,-0.82769 -0.448451,2.82796 c -1.041179,6.56584 -1.17604,8.14698 -1.16606,13.67151 0.01568,8.6638 0.362864,9.67588 3.4448057,10.04085 1.229452,0.1456 1.949224,0.81656 2.308959,2.15237 0.427305,1.58676 -0.08035,2.56277 -1.754465,3.37313 -1.2435537,0.60193 -2.3455927,1.84572 -3.1407027,3.54465 -1.938646,4.14238 -0.09986,9.68697 3.8103987,11.48971 0.777698,0.35855 1.385093,0.45415 2.890672,0.455 1.77324,7.9e-4 2.015536,-0.053 3.476078,-0.7748 0.863499,-0.42671 2.161506,-1.3111 2.884487,-1.96528 0.722981,-0.6542 1.314522,-1.15153 1.314522,-1.10518 0,0.0464 -0.102163,0.63682 -0.227015,1.31213 -0.522524,2.82631 -2.150907,5.0849 -4.390704,6.08995 -2.278914,1.02262 -5.913435,1.17892 -9.9119787,0.42629 -0.868617,-0.16352 -1.651741,-0.29731 -1.740275,-0.29732 -0.08853,-2e-5 0.115288,0.54716 0.452933,1.21596 0.837776,1.65946 1.118712,2.81764 1.11178,4.58341 -0.01087,2.76615 -0.927241,4.73313 -4.376523,9.39392 -1.188654,1.60614 -2.280641,3.25056 -2.426629,3.65425 C 0.1389303,83.66971 -0.0372037,84 -0.1064847,84 c -0.06924,0 -0.245417,-0.33029 -0.39141,-0.73397 z m -2.419204,-9.27522 c 0.06836,-0.17802 -0.02936,-0.87118 -0.217185,-1.54034 -0.44046,-1.56965 -0.436363,-3.45656 0.01025,-4.7025 0.289627,-0.80801 0.304892,-1.04566 0.08423,-1.31153 -0.651875,-0.7854 -1.600796,0.76784 -1.834402,3.0026 -0.134447,1.28623 0.317665,3.53252 0.885363,4.39884 0.359647,0.54885 0.89075,0.62463 1.071772,0.15293 z m 6.693003,-0.15293 c 0.567695,-0.86632 1.019803,-3.11261 0.885348,-4.39884 -0.233592,-2.23476 -1.182521,-3.788 -1.834398,-3.0026 -0.220663,0.26587 -0.205407,0.50352 0.08422,1.31153 0.446596,1.24594 0.450703,3.13285 0.01025,4.7025 -0.187773,0.66916 -0.285505,1.36232 -0.21718,1.54034 0.181021,0.4717 0.712126,0.39592 1.07178,-0.15293 z M -7.9253007,62.20663 c 2.312533,-1.10813 4.557536,-3.60281 4.16431,-4.62743 -0.252204,-0.65717 -0.914842,-0.32521 -1.694482,0.84892 -0.835324,1.25796 -2.708583,2.64253 -4.165901,3.0791 -0.9298923,0.27857 -1.3244233,0.66264 -1.1493553,1.11882 0.198572,0.5174 1.1978233,0.37011 2.8454283,-0.41941 z m 18.4829927,0.41941 c 0.175076,-0.45618 -0.219462,-0.84025 -1.1493537,-1.11882 -1.457317,-0.43657 -3.330567,-1.82114 -4.165893,-3.0791 -0.779643,-1.17413 -1.442278,-1.50609 -1.694485,-0.84892 -0.393226,1.02462 1.851773,3.5193 4.164314,4.62743 1.647603,0.78952 2.6468557,0.93681 2.8454177,0.41941 z M -23.690926,46.61299 c 0,-0.0654 -0.286412,-0.35983 -0.63647,-0.65437 -0.803339,-0.67589 -1.09989,-1.21798 -1.247175,-2.27979 -0.107068,-0.77192 -0.175188,-0.84781 -0.816088,-0.90931 -1.024976,-0.0984 -1.764191,0.44897 -1.592314,1.17894 0.223576,0.94956 0.98904,2.17231 1.551532,2.47841 0.510268,0.27769 2.740515,0.42916 2.740515,0.18612 z m 50.076952,-0.1763 c 0.595616,-0.30799 1.363158,-1.50574 1.594494,-2.48823 0.171877,-0.72997 -0.567339,-1.27728 -1.592314,-1.17894 -0.640901,0.0615 -0.709029,0.13739 -0.816098,0.90931 -0.147276,1.06181 -0.443835,1.6039 -1.247166,2.27979 -0.350058,0.29454 -0.636469,0.58899 -0.636469,0.65437 0,0.24692 2.150938,0.10637 2.697553,-0.1763 z m -63.105782,-5.45467 c 0.746156,-0.92841 0.70525,-1.53836 -0.161284,-2.40481 l -0.538489,-0.53842 -0.647952,0.99599 c -0.887362,1.364 -1.006106,2.80938 -0.346142,4.21326 l 0.483358,1.02819 0.283045,-1.24619 c 0.172187,-0.75808 0.535462,-1.56027 0.927464,-2.04802 z m 75.348128,1.79951 c 0.418965,-1.04769 0.18442,-2.59733 -0.56823,-3.75428 l -0.643066,-0.98846 -0.538489,0.53842 c -0.872724,0.87265 -0.911898,1.4879 -0.153334,2.4081 0.42152,0.51131 0.743554,1.22318 0.90339,1.99696 0.268766,1.30111 0.410544,1.27266 0.999729,-0.20074 z m -66.77388,-0.44059 c 0.764702,-0.53412 1.524491,-0.68822 2.298684,-0.46619 0.514478,0.14752 0.720705,0.10986 0.982388,-0.17922 0.736798,-0.81407 0.260578,-2.04024 -1.05501,-2.71646 -0.366818,-0.18854 -0.478878,-0.55283 -0.684374,-2.22483 -0.320632,-2.60876 -0.313829,-3.2873 0.03295,-3.2873 0.153284,0 1.108851,0.35956 2.123471,0.79898 1.842888,0.79817 1.845148,0.8001 2.21601,1.8955 0.446693,1.31935 0.963851,1.93772 1.620567,1.93772 0.383198,0 0.582895,-0.22069 0.930232,-1.028 0.243258,-0.56543 0.719685,-1.29377 1.058727,-1.61855 0.729905,-0.69923 0.769158,-1.10307 0.18001,-1.85196 -0.480484,-0.61078 -0.904997,-0.67449 -2.102872,-0.31565 l -0.798277,0.23916 -1.805696,-1.65243 c -0.993131,-0.90883 -1.805696,-1.80359 -1.805696,-1.98834 0,-0.18476 2.347726,-2.95806 5.217167,-6.16288 l 5.217173,-5.82697 0.240888,-1.52965 c 0.13249,-0.84132 0.218522,-1.55202 0.191192,-1.57936 -0.0273,-0.0272 -0.374451,0.0435 -0.771377,0.15726 -0.396919,0.11386 -0.974539,0.20695 -1.283594,0.20695 -0.47602,0 -1.433202,1.01157 -6.261476,6.61724 -3.134757,3.63949 -5.785243,6.6702 -5.889964,6.73491 -0.217496,0.13441 -4.27527,-1.70895 -4.481662,-2.03592 -0.07457,-0.11823 -0.19413,-0.58055 -0.265599,-1.02744 -0.07186,-0.44953 -0.395081,-1.10925 -0.723419,-1.47668 -0.485396,-0.5432 -0.695872,-0.63844 -1.155776,-0.52303 -0.422753,0.10612 -0.562309,0.27245 -0.562309,0.67026 0,0.76649 -0.483439,1.80502 -1.122145,2.41059 -0.670786,0.63601 -0.729911,1.517 -0.141306,2.10556 0.488936,0.48887 0.717806,0.5091 1.970609,0.17405 0.920228,-0.24609 0.929102,-0.24313 2.309684,0.77046 0.762247,0.55961 1.432318,1.13844 1.489056,1.28629 0.05675,0.14784 -0.624754,1.22237 -1.514429,2.38786 l -1.617591,2.11907 h -1.061236 c -2.086232,0 -2.616612,1.13269 -1.18216,2.52464 0.50429,0.48935 0.888244,1.10216 1.00698,1.60716 0.153429,0.6526 0.298278,0.82877 0.722574,0.87883 0.769945,0.0909 1.211495,-0.52756 1.511126,-2.11634 0.233249,-1.23677 0.406134,-1.55405 1.624604,-2.9814 1.227628,-1.43806 2.110912,-2.00622 2.110912,-1.35777 0,0.13174 0.153398,1.44979 0.34089,2.929 l 0.340881,2.68944 -0.551462,0.72294 c -0.680861,0.89258 -0.712458,1.7046 -0.08346,2.14513 0.576834,0.40399 0.51104,0.40747 1.184095,-0.0626 z m 57.472648,0.0626 c 0.629011,-0.44054 0.597415,-1.25256 -0.08346,-2.14513 l -0.551461,-0.72294 0.340889,-2.68944 c 0.187485,-1.47921 0.34089,-2.79726 0.34089,-2.929 0,-0.64845 0.883285,-0.0803 2.110905,1.35777 1.218468,1.42735 1.391364,1.74463 1.624603,2.9814 0.29963,1.58878 0.741181,2.20717 1.511134,2.11634 0.424297,-0.0501 0.569138,-0.22623 0.722575,-0.87884 0.118725,-0.505 0.502682,-1.1178 1.00698,-1.60715 1.434451,-1.39196 0.904065,-2.52465 -1.182168,-2.52465 h -1.061235 l -1.617583,-2.11906 c -0.889676,-1.16549 -1.571167,-2.24002 -1.51443,-2.38786 0.05675,-0.14785 0.726809,-0.72668 1.489058,-1.2863 1.380579,-1.01358 1.389445,-1.01655 2.309675,-0.77045 1.252801,0.33504 1.481679,0.31482 1.970609,-0.17406 0.588613,-0.58855 0.529486,-1.46955 -0.1413,-2.10555 -0.638705,-0.60558 -1.122151,-1.6441 -1.122151,-2.4106 0,-0.39781 -0.139557,-0.56416 -0.562302,-0.67025 -0.459911,-0.11536 -0.670388,-0.0203 -1.155783,0.52303 -0.328339,0.36743 -0.651519,1.02715 -0.723411,1.47668 -0.07147,0.44689 -0.190986,0.90924 -0.265607,1.02744 -0.206386,0.32697 -4.264159,2.17033 -4.481664,2.03591 -0.104725,-0.0648 -2.74349,-3.08181 -5.863939,-6.70468 l -5.673533,-6.58703 -1.007705,-0.13009 c -0.554239,-0.0715 -1.220912,-0.19096 -1.481497,-0.26535 -0.351729,-0.10036 -0.473791,-0.0475 -0.473791,0.20517 0,0.18723 0.09005,0.3404 0.200115,0.3404 0.110062,0 0.263362,0.55895 0.340657,1.2421 l 0.140544,1.24209 5.239583,5.85199 c 2.881765,3.21859 5.239583,6.00315 5.239583,6.18791 0,0.18474 -0.812564,1.0795 -1.805695,1.98834 l -1.805696,1.65243 -0.798278,-0.23916 c -1.197879,-0.35885 -1.622398,-0.29513 -2.102875,0.31565 -0.589147,0.74889 -0.549894,1.15272 0.180011,1.85195 0.339043,0.32479 0.815469,1.05313 1.058728,1.61856 0.347335,0.8073 0.547036,1.028 0.930233,1.028 0.656717,0 1.173876,-0.61837 1.620568,-1.93773 0.370861,-1.0954 0.373121,-1.09732 2.216009,-1.89549 1.01462,-0.43943 1.970179,-0.79898 2.123464,-0.79898 0.346794,0 0.353607,0.67854 0.03295,3.2873 -0.205494,1.67199 -0.317554,2.03629 -0.684371,2.22483 -1.315589,0.67622 -1.791808,1.90239 -1.055012,2.71646 0.261684,0.28912 0.46791,0.32674 0.982379,0.17921 0.776336,-0.22264 1.547412,-0.0666 2.266189,0.4586 0.647054,0.47279 0.642199,0.4725 1.21659,0.0702 z m -46.063418,-1.83041 c 0.671329,-1.47882 0.48215,-3.1969 -0.492661,-4.47427 -0.319303,-0.41841 -0.324749,-0.41794 -0.847844,0.0735 -0.289563,0.272 -0.637965,0.76367 -0.77422,1.09259 -0.224317,0.5415 -0.183815,0.67756 0.428556,1.4395 0.462179,0.57507 0.710596,1.14575 0.784637,1.80254 0.05961,0.52859 0.195403,0.96106 0.301819,0.96106 0.106416,0 0.376289,-0.40268 0.599713,-0.89485 z m 34.371633,-0.0662 c 0.07401,-0.65679 0.322457,-1.22748 0.784637,-1.80254 0.61237,-0.76193 0.652871,-0.89801 0.428555,-1.4395 -0.136254,-0.32893 -0.484657,-0.8206 -0.774219,-1.09259 -0.523097,-0.49137 -0.52854,-0.49185 -0.847845,-0.0735 -0.568,0.74428 -0.90826,1.75274 -0.903517,2.6778 0.0047,0.92811 0.666832,2.69133 1.010569,2.69133 0.106413,0 0.24224,-0.43248 0.30182,-0.96106 z m -54.43804,-15.16271 c 0.64094,-1.12542 0.6211,-1.85076 -0.05905,-2.16065 -0.738786,-0.33659 -1.681943,-0.30585 -2.426318,0.079 -0.571772,0.29564 -1.880564,1.8371 -1.880564,2.21488 0,0.0875 0.544865,0.10974 1.210804,0.0495 1.017121,-0.092 1.295023,-0.0395 1.737243,0.32832 0.672052,0.55894 0.843785,0.49705 1.417922,-0.51109 z m 75.017329,0.51205 c 0.514104,-0.38005 0.796998,-0.43262 1.781359,-0.33103 0.643608,0.0665 1.170198,0.0471 1.170198,-0.043 0,-0.38165 -1.30513,-1.92211 -1.880564,-2.21965 -1.236924,-0.63957 -2.962658,-0.25026 -2.962658,0.66836 0,0.64831 0.867257,2.37713 1.192474,2.37713 0.04839,0 0.363046,-0.20332 0.699191,-0.45181 z M -45.220865,13.41164 c 0.24251,-0.30271 1.509647,-5.53162 2.130253,-8.79066 0.595401,-3.12666 1.223315,-7.81165 1.515122,-11.30472 0.367831,-4.40309 0.143823,-14.42762 -0.413791,-18.51751 -0.520836,-3.8202 -1.652339,-9.54857 -1.959082,-9.91814 -0.298822,-0.36002 -0.938801,-0.33475 -1.083688,0.0429 -0.06494,0.16927 0.111275,1.32995 0.391609,2.5793 1.382862,6.16276 1.891499,11.16742 1.889311,18.5895 -0.0024,8.86962 -0.922109,16.18589 -3.139001,24.9765 -0.320594,1.27125 -0.419545,2.03666 -0.292612,2.26345 0.228497,0.40828 0.669284,0.4447 0.961879,0.0795 z m 91.611734,-0.0795 c 0.126926,-0.22679 0.02801,-0.9922 -0.292619,-2.26347 -2.216893,-8.79061 -3.136389,-16.10686 -3.139,-24.97648 -0.0024,-7.4221 0.506455,-12.42675 1.88931,-18.5895 0.280347,-1.24936 0.45657,-2.41004 0.391619,-2.5793 -0.144898,-0.37755 -0.784868,-0.40281 -1.083695,-0.0427 -0.237879,0.28661 -1.422316,5.91543 -1.647047,7.82733 -0.07576,0.64465 -0.203784,1.1721 -0.284461,1.1721 -0.333424,0 -0.698681,4.91161 -0.793049,10.66407 -0.07824,4.76932 -0.02078,6.99834 0.257831,10.00118 0.197187,2.12523 0.431508,3.9115 0.520718,3.96948 0.08921,0.058 0.230079,0.6739 0.313041,1.36873 0.414547,3.47199 2.453052,12.96342 2.905467,13.52811 0.292595,0.36522 0.733382,0.3288 0.961885,-0.0795 z M -28.533439,-2.01233 c 0.384564,-0.46333 0.161123,-9.38324 -0.311165,-12.42187 -0.421041,-2.70885 -1.411483,-6.69194 -1.94795,-7.83369 -0.392628,-0.83564 -1.168892,-1.18421 -1.384733,-0.62181 -0.06431,0.16763 0.164275,1.17925 0.508014,2.24803 1.333241,4.14548 1.865577,7.8259 1.994207,13.78745 0.055,2.5477 0.141673,4.75063 0.192672,4.89538 0.12668,0.35957 0.629641,0.33122 0.948955,-0.0535 z m 58.013379,0.0535 c 0.05101,-0.14474 0.137701,-2.34767 0.192665,-4.89537 0.128629,-5.96153 0.660965,-9.64196 1.994214,-13.78744 0.343739,-1.0688 0.572345,-2.0804 0.508015,-2.24802 -0.215841,-0.5624 -0.992105,-0.21384 -1.384734,0.6218 -0.536468,1.14173 -1.526916,5.12484 -1.94795,7.8337 -0.472288,3.0386 -0.69573,11.95852 -0.311164,12.42185 0.319314,0.38471 0.822274,0.41306 0.948954,0.0535 z m -36.6298997,-11.2405 c 0.347216,-3.24193 -0.386605,-6.79811 -2.642288,-12.80471 -1.5573363,-4.14699 -2.0061213,-5.88428 -1.8016303,-6.97421 0.157925,-0.84173 0.976348,-1.87442 1.8390433,-2.32048 0.447807,-0.23156 0.601474,-0.44849 0.554,-0.78203 -0.147689,-1.03767 -1.6991433,-0.42051 -2.9941993,1.19109 -0.624982,0.77773 -0.650666,0.88823 -0.63607,2.73719 0.01418,1.79173 0.09272,2.13332 1.121363,4.87452 2.8246553,7.52726 3.1802203,8.97212 3.1802203,12.92267 0,2.82756 0.09914,3.13659 0.878007,2.73682 0.247876,-0.12721 0.395813,-0.5935 0.501554,-1.58086 z m 15.466446,-1.16094 c 0,-3.94495 0.356409,-5.39265 3.1802187,-12.91769 1.028644,-2.7412 1.107227,-3.08279 1.12137,-4.87452 0.01456,-1.84896 -0.011,-1.95946 -0.63607,-2.73719 -1.295063,-1.6116 -2.8465167,-2.22876 -2.9942067,-1.19109 -0.04751,0.33354 0.106188,0.55047 0.554,0.78203 0.8626967,0.44606 1.6811177,1.47875 1.8390427,2.32048 0.204611,1.09054 -0.244445,2.82765 -1.8056637,6.98496 -2.121865,5.65023 -2.614193,7.75508 -2.621491,11.20766 -0.0056,2.49047 0.03789,2.83885 0.383038,3.0912 0.838525,0.61308 0.979762,0.2288 0.979762,-2.66584 z m -62.3214803,-9.20288 c 0.0048,-0.19027 0.0016,-2.00411 -0.008,-4.03078 -0.01711,-3.75557 0.168359,-6.12091 0.759319,-9.68536 0.378422,-2.28251 1.545437,-7.42696 2.158085,-9.51327 0.35165,-1.19753 0.370791,-1.46388 0.128566,-1.78971 -0.555981,-0.74787 -1.001505,-0.0837 -1.734474,2.5854 -1.84115,6.70473 -2.639866,12.11795 -2.663504,18.05156 -0.01608,4.03359 0.01377,4.4088 0.371499,4.67038 0.465889,0.34063 0.976379,0.1918 0.988515,-0.28822 z m 109.600286,-2.02753 c 0.356655,-5.23205 -0.674783,-13.0654 -2.686928,-20.40619 -0.731671,-2.6693 -1.176995,-3.33359 -1.733215,-2.5854 -0.242225,0.32583 -0.223092,0.59218 0.128565,1.78971 0.612649,2.08631 1.779663,7.23076 2.158085,9.51327 0.600137,3.61981 0.773614,5.92404 0.750359,9.96652 -0.02396,4.16618 0.06016,4.56435 0.872795,4.12949 0.287215,-0.1537 0.389653,-0.63692 0.510339,-2.4074 z m -108.766727,-35.5607 c 3.813352,-7.56696 5.471446,-9.65081 7.749165,-9.73894 0.544339,-0.0211 1.060767,-0.0472 1.147628,-0.058 0.304645,-0.038 0.154424,-1.02875 -0.175156,-1.15522 -0.680568,-0.26112 -2.088414,-0.11449 -2.962522,0.30866 -1.230113,0.59543 -2.807019,2.38062 -4.213233,4.76976 -1.26228,2.14457 -5.125661,10.02236 -5.125661,10.45167 0,0.34523 0.454666,0.78668 0.729116,0.7079 0.120162,-0.0345 1.402959,-2.41312 2.850663,-5.28585 z m 110.00155,4.86941 c 0.168296,-0.26678 -0.19475,-1.20508 -1.624459,-4.19856 -3.428293,-7.178 -5.534861,-10.32188 -7.579303,-11.31146 -0.879163,-0.42558 -2.286348,-0.57323 -2.968437,-0.31152 -0.329571,0.12646 -0.479792,1.11722 -0.175156,1.15521 0.08686,0.0112 0.603297,0.0369 1.147627,0.058 2.278096,0.0881 4.079588,2.34548 7.667645,9.60784 1.344542,2.7214 2.543089,5.06961 2.663425,5.21824 0.263388,0.32527 0.57545,0.24706 0.868658,-0.21773 z m -62.7597837,-11.3698 c -0.57256,-0.60797 -1.713272,-1.95815 -2.534903,-3.00038 -1.6280233,-2.06515 -2.1531343,-2.51898 -4.0010343,-3.45793 -1.94105,-0.98626 -4.495728,-1.39707 -5.076526,-0.81633 -0.372228,0.37219 -0.307262,1.31893 0.115817,1.68773 0.203967,0.1778 0.95625,0.3715 1.684881,0.4338 1.32557,0.11336 2.830201,0.78416 4.404083,1.96346 1.033355,0.77427 6.2383033,4.29507 6.3495993,4.29507 0.05451,0 -0.369357,-0.49744 -0.941917,-1.10542 z m -21.1304563,10.8171 c -1.827129,-0.60118 -4.664102,-2.8633 -4.932646,-3.93318 -0.07059,-0.2811 0.01059,-0.84353 0.180393,-1.2498 0.454914,-1.08867 1.046424,-0.98753 2.432558,0.41591 1.533976,1.55314 2.542483,2.00418 4.475789,2.00181 1.586202,-10e-4 2.664406,-0.31832 7.468459,-2.19138 1.066209,-0.41571 2.388132,-0.77922 2.937596,-0.80781 0.917533,-0.0478 1.015966,-0.005 1.206619,0.52294 0.114175,0.31621 0.155998,0.62652 0.09293,0.68957 -0.06303,0.063 -0.681037,0.2144 -1.373271,0.33633 -0.831921,0.14653 -1.966393,0.61169 -3.34639,1.37211 -4.302678,2.37093 -5.537723,2.88143 -7.141578,2.95192 -0.810708,0.0356 -1.710923,-0.0131 -2.000461,-0.10836 z m 21.2176033,-18.18649 c -0.65611,-0.50559 -0.549908,-1.57408 0.18419,-1.85316 1.209084,-0.45965 2.127372,1.05706 1.082883,1.78858 -0.56625,0.39659 -0.819481,0.40949 -1.267073,0.0646 z"
-                                               inkscape:connector-curvature="0"
-                                               style="fill:#ffffff;stroke-width:0.9921875"/>
-                       </g>
-               </g>
-               <path
-                               style="fill:#000000;fill-opacity:0.33333333;fill-rule:nonzero;stroke:none;stroke-width:1.74999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
-                               d="m 16.000088,216.99972 c -8.8639991,0 -16.000056560368,7.13605 -16.000056560368,16.00005 v 48.00017 C 3.1439632e-5,289.86394 7.1360889,297 16.000088,297 h 95.999822 c 8.864,0 16.00006,-7.13606 16.00006,-16.00006 v -48.00017 c 0,-8.864 -7.13606,-16.00005 -16.00006,-16.00005 z m 0,4.00027 h 95.999822 c 6.648,0 12.0003,5.35178 12.0003,11.99978 v 48.00017 c 0,6.648 -5.3523,11.99979 -12.0003,11.99979 H 16.000088 c -6.648,0 -11.9997842,-5.35179 -11.9997842,-11.99979 v -48.00017 c 0,-6.648 5.3517842,-11.99978 11.9997842,-11.99978 z"
-                               id="rect815-8"
-                               inkscape:connector-curvature="0"/>
-       </g>
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="128mm"
+   height="80mm"
+   viewBox="0 0 128 80"
+   version="1.1"
+   id="svg8"
+   inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+   sodipodi:docname="isarnareykk.inkscape.svg">
+  <defs
+     id="defs2">
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath904">
+      <g
+         inkscape:label="Clip"
+         id="use906">
+        <g
+           style="stroke-width:1.19062495"
+           transform="matrix(0.22222222,0,0,0.22222222,-2.666666,217)"
+           id="g941">
+          <rect
+             style="fill:#ffcc33;stroke-width:1.19062495"
+             width="600"
+             height="360"
+             x="0"
+             y="0"
+             id="rect921" />
+          <polygon
+             style="fill:#ffffff;stroke-width:1.19062495"
+             points="540,360 600,360 600,324 60,0 0,0 0,36 "
+             id="polygon923" />
+          <polygon
+             style="fill:#ffffff;stroke-width:1.19062495"
+             points="60,360 0,360 0,324 540,0 600,0 600,36 "
+             id="polygon925" />
+          <circle
+             style="fill:#ffffff;stroke-width:1.19062495"
+             r="150"
+             cx="300"
+             cy="180"
+             id="circle927" />
+          <polygon
+             style="fill:#000000;stroke-width:1.19062495"
+             points="566.25,360 600,360 600,339.75 33.75,0 0,0 0,20.25 "
+             id="polygon929" />
+          <polygon
+             style="fill:#000000;stroke-width:1.19062495"
+             points="33.75,360 0,360 0,339.75 566.25,0 600,0 600,20.25 "
+             id="polygon931" />
+          <circle
+             style="fill:#000000;stroke-width:1.19062495"
+             r="135"
+             cx="300"
+             cy="180"
+             id="circle933" />
+          <circle
+             style="fill:#ffffff;stroke-width:1.19062495"
+             r="105"
+             cx="300"
+             cy="180"
+             id="circle935" />
+          <g
+             style="stroke-width:1.19062495"
+             transform="matrix(3,0,0,3,300,191.25)"
+             id="g939">
+            <path
+               style="fill:#000000;stroke-width:1.19062495"
+               inkscape:connector-curvature="0"
+               d="m -1.266704,23.778129 c -1.537976,-1.75464 -1.571822,-2.10765 -0.459874,-4.79639 0.150439,-0.36377 -0.112142,-0.23308 -0.896696,0.44631 -0.655233,0.56739 -1.482703,1.0189 -2.021186,1.10286 -1.654672,0.25799 -2.182575,0.67965 -2.182575,1.74329 0,0.52345 -0.06805,0.95164 -0.15123,0.95156 -0.428121,-4.8e-4 -0.992507,-1.04979 -0.992507,-1.84528 0,-1.1674 0.625845,-1.73918 2.625496,-2.39874 1.199991,-0.3958 1.692435,-0.71591 2.135763,-1.38835 0.9526,-1.44489 0.737478,-1.65152 -0.827451,-0.79473 -1.59832,0.87506 -2.889925,0.98115 -4.417046,0.36282 -0.816105,-0.33045 -1.111578,-0.34717 -1.593667,-0.0901 -1.194321,0.63682 -1.292751,1.56673 -0.282539,2.66923 0.492449,0.53743 0.559391,0.70267 0.233375,0.57608 -0.251428,-0.0977 -0.502036,-0.17753 -0.55691,-0.17753 -0.264693,0 -0.875311,-1.60855 -0.875311,-2.30584 0,-1.28964 1.130372,-1.80725 3.949337,-1.80843 3.214575,-9.8e-4 4.518877,-0.71753 5.37184,-2.94962 0.514679,-1.34684 0.417693,-1.9089 -0.361909,-2.09737 -1.058648,-0.25592 -1.334359,-0.5868 -1.334359,-1.60137 0,-0.91139 0.0062,-0.91696 0.395657,-0.35432 0.524909,0.75837 1.273265,0.72378 1.795654,-0.083 0.536373,-0.8284 0.203861,-2.14266 -0.871739,-3.44558 l -0.730766,-0.8852 -0.910443,0.92134 c -0.500745,0.50672 -1.159057,1.41447 -1.46292,2.01721 -0.419085,0.8313 -0.607728,1.00888 -0.781316,0.73548 -0.179494,-0.28268 -0.418748,-0.13852 -1.109415,0.66841 -1.245472,1.45514 -1.173036,1.67116 0.561783,1.67533 1.908554,0.005 2.605178,0.20957 2.605178,0.76659 0,0.24911 0.17156,0.597 0.381245,0.77311 0.393009,0.33007 0.496885,1.19619 0.228384,1.90426 -0.128845,0.33978 -0.226073,0.31277 -0.618855,-0.17186 -0.406156,-0.50115 -0.534723,-0.53258 -1.001214,-0.24477 -0.693773,0.42803 -1.063835,0.1817 -0.874407,-0.58205 0.16074,-0.64811 -0.435325,-1.16479 -1.339031,-1.1607 -0.69083,0.003 -4.834261,3.20771 -5.043154,3.90042 -0.263135,0.87259 -0.874101,1.48601 -1.311067,1.31632 -0.223827,-0.0869 -0.643121,0.13894 -1.018492,0.5486 -0.350927,0.38298 -0.684181,0.64963 -0.74057,0.59258 -0.05639,-0.0571 0.110739,-0.78519 0.371396,-1.61807 0.38267,-1.22273 0.639827,-1.60655 1.335522,-1.99332 0.92742,-0.51562 2.826745,-2.26031 2.652543,-2.4366 -0.05827,-0.059 -0.678917,0.0853 -1.379209,0.32075 -0.876661,0.29466 -1.231426,0.53828 -1.138963,0.78211 0.179599,0.47361 -1.752024,1.02066 -2.387924,0.67627 -0.49312,-0.26707 -1.768107,-0.10382 -1.986878,0.25439 -0.221918,0.36337 -0.870818,0.26078 -0.870818,-0.13766 0,-0.2003 0.502089,-0.90975 1.115757,-1.57658 0.997309,-1.08368 1.206424,-1.19821 1.969769,-1.07883 0.9164,0.14333 3.522728,-0.27954 3.522728,-0.57155 0,-0.097 -0.862372,-0.36584 -1.916381,-0.5973 -1.488659,-0.32691 -2.057472,-0.35578 -2.548531,-0.12938 -0.47568,0.21933 -0.705935,0.21681 -0.930252,-0.0102 -0.431062,-0.43622 -0.908137,-0.3733 -1.745723,0.23025 -0.736879,0.53098 -0.738186,0.531 -0.738186,0.0119 0,-0.28595 0.296444,-0.72786 0.658762,-0.98201 0.36232,-0.25417 0.845234,-0.66466 1.07314,-0.91223 0.552514,-0.60014 1.355241,-0.56825 2.177826,0.0865 0.663698,0.52832 3.725539,1.23626 5.427071,1.25482 0.701903,0.008 0.98832,-0.20506 1.956005,-1.45274 1.07998,-1.39246 1.273001,-2.07907 0.500097,-1.77893 -0.579444,0.22501 -0.404513,-0.24671 0.216332,-0.58337 0.660262,-0.35804 2.342474,-2.69467 2.018619,-2.80391 -0.119284,-0.0403 -1.122656,0.3838 -2.229717,0.9423 -2.211425,1.11566 -4.871725,1.90831 -5.916734,1.76296 l -0.671046,-0.0933 0.63541,-0.28094 c 0.889191,-0.39313 1.913097,-1.56793 2.390912,-2.74323 0.530007,-1.30368 0.521897,-1.32705 -0.276782,-0.79748 -3.054432,2.02528 -6.373977,2.84353 -8.785927,2.16568 -0.902324,-0.25359 -1.320233,-0.75432 -0.635409,-0.76135 1.074988,-0.0109 6.287241,-3.55212 6.289602,-4.27303 7.63e-4,-0.19664 -0.835486,-0.28617 -2.604229,-0.27882 -2.790155,0.0115 -4.074726,-0.34134 -5.225823,-1.43566 l -0.594273,-0.56497 2.125693,-0.28507 c 1.704551,-0.2286 2.387189,-0.4582 3.44558,-1.15888 0.725936,-0.48059 1.321941,-0.9606 1.324452,-1.06671 0.0025,-0.10609 -0.471469,-0.1929 -1.053291,-0.1929 -1.594373,0 -3.67165,-0.76481 -4.854596,-1.78737 l -1.056507,-0.91325 2.153165,-0.1318 c 1.704149,-0.10431 2.324786,-0.25546 2.976151,-0.72482 1.02149,-0.73605 1.032642,-0.96567 0.0565,-1.16323 -1.428742,-0.28917 -3.505191,-1.46364 -4.441095,-2.51196 -0.512524,-0.5741 -0.871622,-1.10476 -0.797996,-1.17927 0.07363,-0.0745 0.499895,-0.007 0.947261,0.15148 0.911187,0.32144 3.790274,0.39302 3.782458,0.094 -0.0028,-0.10609 -0.584779,-0.54011 -1.293347,-0.96449 -1.430677,-0.85689 -3.258274,-2.70744 -3.884906,-3.9337 L -25,-19.702331 l 1.080326,0.49624 c 0.594181,0.27294 1.637607,0.49879 2.318725,0.50189 1.072296,0.005 1.195961,-0.046 0.921994,-0.38016 -0.174024,-0.21219 -0.451524,-0.3858 -0.616673,-0.3858 -0.706905,0 -3.791295,-4.36994 -3.378928,-4.78725 0.07293,-0.0738 0.689595,0.15145 1.370367,0.50053 0.680772,0.34911 1.635729,0.67518 2.122124,0.72461 l 0.884355,0.0899 -0.08755,-1.00113 -0.08755,-1.00113 0.812825,0.93682 c 0.447057,0.51527 0.921769,0.93683 1.054917,0.93683 0.515268,0 3.330207,1.56724 3.806264,2.11917 0.840323,0.97425 1.227358,2.11052 1.064599,3.12548 -0.113992,0.71085 -0.034,1.07045 0.32826,1.47581 0.337896,0.37811 0.473581,0.90308 0.460667,1.78236 -0.0166,1.12914 0.04838,1.27434 0.690522,1.54351 0.982104,0.41167 1.309934,0.88494 1.474012,2.12795 0.13808,1.04605 0.16143,1.06828 1.041156,0.99149 0.621202,-0.0542 1.113125,0.0912 1.588357,0.46945 0.627195,0.49925 0.724151,0.51188 1.089679,0.14199 0.220675,-0.22332 0.639729,-0.5352 0.93123,-0.69307 l 0.530002,-0.28705 -0.520074,-0.41858 c -0.639267,-0.51452 -1.018939,-1.24254 -1.090154,-2.0904 -0.107567,-1.28065 -0.02255,-1.35286 0.784253,-0.66587 0.430093,0.36623 0.895758,0.66587 1.034807,0.66587 0.597264,0 0.979,-0.79285 0.979,-2.03332 0,-1.09612 -0.09758,-1.36316 -0.626211,-1.71367 -0.563649,-0.37373 -0.703105,-0.3764 -1.395877,-0.0266 -0.729528,0.36829 -0.756518,0.3637 -0.517525,-0.0881 0.541348,-1.02361 0.09246,-1.03403 -1.354128,-0.0314 -1.381115,0.95723 -1.989939,1.13451 -2.81115,0.81856 -0.982644,-0.37807 -1.32557,-1.30022 -0.82871,-2.22848 l 0.396665,-0.74107 0.01016,0.69827 c 0.01972,1.35306 1.428725,1.53466 3.614715,0.46588 0.586239,-0.28663 1.330339,-0.52114 1.653556,-0.52114 0.86923,0 0.718091,-0.41557 -0.46712,-1.2844 -1.383946,-1.01451 -2.597661,-1.05089 -3.093759,-0.0928 l -0.352328,0.68049 -0.545362,-0.55189 c -1.191382,-1.20562 -0.300048,-3.48292 1.443327,-3.68759 0.438365,-0.0514 0.709091,-0.25999 0.770799,-0.59372 0.208201,-1.12599 1.039687,-1.15758 3.594604,-0.13651 2.209083,0.88284 2.923957,0.95456 3.283769,0.3294 0.230767,-0.40094 0.259908,-0.38618 0.266792,0.13503 0.006,0.44851 -0.172409,0.6216 -0.763771,0.74128 -0.735253,0.14881 -0.751313,0.17873 -0.341853,0.63659 0.488398,0.54613 1.372827,0.62938 1.825012,0.17178 0.237218,-0.24005 0.304997,-0.18491 0.304997,0.24816 0,0.30624 -0.222073,0.67707 -0.4935,0.82406 -0.48424,0.26226 -0.482566,0.29234 0.0894,1.60386 0.584587,1.34045 1.166584,1.8972 1.166584,1.11599 0,-0.22962 0.237159,-0.88792 0.527021,-1.46288 l 0.52702,-1.04541 -0.540298,-0.38295 c -0.77022,-0.54594 -0.513934,-0.94114 0.623161,-0.96095 1.131549,-0.0197 1.477517,-0.52124 0.526228,-0.76286 -0.444296,-0.11284 -0.646467,-0.3389 -0.646467,-0.72285 0,-0.54302 0.01001,-0.54482 0.357354,-0.0642 0.398556,0.55157 0.747119,0.48963 3.871809,-0.68814 1.30873,-0.49329 1.667474,-0.53883 2.223932,-0.28224 0.396691,0.1829 0.663487,0.51498 0.663487,0.82582 0,0.35638 0.167559,0.51993 0.532653,0.51993 1.936674,0 3.004446,2.64601 1.527211,3.78458 -0.577665,0.44523 -0.670037,0.41376 -1.011447,-0.34451 -0.267889,-0.59499 -0.411389,-0.65755 -1.208161,-0.5267 -0.914235,0.15013 -2.636057,1.27972 -2.636057,1.72936 0,0.13427 0.200155,0.24466 0.444787,0.24531 0.244633,7.8e-4 1.131028,0.28727 1.969768,0.63691 0.83874,0.34963 1.764598,0.63845 2.057458,0.6418 0.637918,0.008 1.367498,-0.74267 1.389861,-1.42875 0.01326,-0.40597 0.06033,-0.38218 0.263786,0.13328 0.58031,1.4701 -0.515276,2.78981 -2.010064,2.42126 -0.376413,-0.0928 -1.162488,-0.49843 -1.746836,-0.90141 -1.473995,-1.01648 -2.122894,-0.96506 -1.17648,0.0932 0.416566,0.46581 0.406794,0.46845 -0.317705,0.0861 -0.969212,-0.51146 -1.213456,-0.499 -1.739,0.0887 -0.320828,0.35874 -0.414486,0.84085 -0.357097,1.83822 0.100256,1.74249 0.576384,2.10748 1.69639,1.30045 l 0.795951,-0.57356 v 0.95775 c 0,0.62532 -0.220546,1.25035 -0.635409,1.80077 -0.713209,0.94625 -0.768657,1.13455 -0.334086,1.13455 0.165728,0 0.557762,0.24379 0.871187,0.54176 l 0.569863,0.54175 0.590254,-0.56328 c 0.459744,-0.43874 0.800997,-0.5355 1.543368,-0.43764 0.907997,0.11971 0.953117,0.0909 0.953117,-0.60937 0,-1.16666 0.532961,-2.04751 1.559537,-2.57749 0.88369,-0.45621 0.94084,-0.55458 0.80703,-1.389 -0.0967,-0.60323 -0.009,-1.10777 0.26969,-1.53696 0.26219,-0.40493 0.41371,-1.18599 0.41371,-2.1326 0,-2.07439 0.88031,-3.13487 3.68599,-4.4404 1.19814,-0.55751 2.3108,-1.27517 2.6408,-1.70327 l 0.57027,-0.73986 -0.16401,0.76681 c -0.0902,0.42176 -0.18377,0.88472 -0.20794,1.02881 -0.081,0.48291 1.71608,0.12041 3.18787,-0.64304 l 1.45265,-0.75352 -0.26114,0.70069 c -0.52623,1.41189 -2.15837,3.65034 -3.08082,4.22529 -0.52116,0.32484 -0.95066,0.67743 -0.95442,0.78352 -0.0138,0.38962 2.18639,0.16653 3.2716,-0.33172 0.61492,-0.28232 1.16265,-0.46817 1.21719,-0.41299 0.15037,0.15218 -1.65653,2.51142 -2.55755,3.33935 -0.43688,0.40144 -1.36574,1.0944 -2.06412,1.53988 -0.98326,0.62723 -1.15999,0.83139 -0.78322,0.90483 0.69374,0.13519 3.48992,-0.1032 4.04845,-0.34517 0.44687,-0.19359 0.45031,-0.16436 0.0686,0.58258 -0.68065,1.33198 -2.78283,2.64068 -4.88182,3.03917 -1.1287,0.21428 -1.01159,0.59748 0.40621,1.32918 0.86678,0.44732 1.55268,0.5787 3.02127,0.5787 h 1.89993 l -0.71284,0.75295 c -0.97017,1.02474 -2.87667,1.80838 -4.8542,1.99525 -0.90456,0.0854 -1.64465,0.22997 -1.64465,0.32109 0,0.0911 0.6284,0.55106 1.39646,1.02212 1.09273,0.67019 1.87601,0.92078 3.60142,1.15216 l 2.20498,0.2957 -0.81718,0.69584 c -1.14819,0.97769 -2.56859,1.31639 -5.43256,1.29541 -1.36295,-0.0101 -2.4781,0.0698 -2.4781,0.17724 0,0.72369 3.5531,3.27814 5.5914,4.01987 0.69906,0.25439 1.27102,0.54166 1.27102,0.63838 0,0.26366 -2.11779,0.75133 -3.26282,0.75133 -1.44559,0 -4.01372,-0.86968 -5.63291,-1.90755 -1.30429,-0.83603 -1.40345,-0.8615 -1.480949,-0.38032 -0.128713,0.79929 1.892589,3.2867 2.688229,3.30812 0.17474,0.005 0.3177,0.13921 0.3177,0.29889 0,0.76887 -4.586921,-0.55263 -7.307201,-2.10518 -0.753489,-0.43005 -1.33436,-0.63123 -1.33436,-0.46215 0,0.4055 1.182598,2.01533 2.002436,2.72583 0.536631,0.46506 0.579732,0.57767 0.221496,0.5787 -0.244632,7.8e-4 -0.444787,0.12649 -0.444787,0.27951 0,0.27169 1.655539,2.4801 2.160392,2.88187 0.621355,0.49447 5.451034,-0.36138 6.451904,-1.14332 0.72652,-0.5676 1.24516,-0.59948 1.78709,-0.10985 2.26327,2.0448 2.75998,2.86931 1.14921,1.90757 -0.79597,-0.47525 -0.98223,-0.49902 -1.54067,-0.19657 -0.5085,0.27539 -0.73547,0.28068 -1.13762,0.0265 -0.40653,-0.25692 -0.86429,-0.23229 -2.39888,0.12899 -1.04306,0.24558 -1.89648,0.5291 -1.89648,0.63004 0,0.30185 2.34936,0.69912 3.26857,0.5527 0.76451,-0.12177 0.97093,-0.009 1.96977,1.07637 1.1585,1.25884 1.48788,2.1488 0.67097,1.81286 -1.17436,-0.48293 -1.93923,-0.60955 -2.3472,-0.3886 -0.61786,0.33462 -2.20545,-0.15237 -2.35256,-0.72164 -0.1165,-0.45087 -2.129518,-1.26029 -2.415235,-0.97116 -0.193584,0.1959 2.183665,2.46647 2.582345,2.46647 0.63681,0 1.13581,0.9231 1.8075,3.34364 0.17205,0.61999 0.14739,0.61308 -0.68893,-0.1929 -0.47705,-0.45976 -1.11708,-0.83592 -1.42229,-0.83592 -0.38032,0 -0.60523,-0.20282 -0.71479,-0.6446 -0.18308,-0.73813 -2.222473,-2.68265 -3.687353,-3.5158 -0.545369,-0.31018 -0.991578,-0.6584 -0.991578,-0.77381 0,-0.11541 -0.325397,-0.20984 -0.723099,-0.20984 -0.711643,0 -1.717144,0.78847 -1.406448,1.10289 0.08747,0.0884 0.08637,0.35258 -0.0025,0.5868 -0.1276,0.3365 -0.237458,0.36206 -0.523481,0.12185 -0.400361,-0.33624 -1.411139,0.0416 -1.411139,0.52752 0,0.51303 -0.449535,-0.0267 -0.574877,-0.69024 -0.169766,-0.89868 0.574993,-2.61469 1.210286,-2.78863 0.27958,-0.0766 1.223162,-0.14076 2.096851,-0.1427 0.873687,-0.002 1.588522,-0.10028 1.588522,-0.2185 0,-0.11824 -0.415962,-0.75528 -0.924357,-1.41563 C 6.82362,7.950469 6.661677,7.845789 6.404016,8.202389 6.14876,8.555639 6.04253,8.468859 5.648902,7.585509 5.396961,7.020119 4.744554,6.116549 4.199107,5.577559 3.21611,4.606219 3.203123,4.602039 2.723247,5.102349 c -0.664852,0.69325 -1.544126,2.35087 -1.544126,2.91117 0,0.58146 1.029401,1.58023 1.628699,1.58023 0.248709,0 0.511682,-0.23018 0.584382,-0.51152 0.170525,-0.65986 0.582719,-0.40647 0.582719,0.35823 0,0.70047 -0.626239,1.3069 -1.588523,1.53825 -0.779659,0.18746 -0.876666,0.74941 -0.361908,2.09645 0.862707,2.2576 1.824224,2.7778 5.456682,2.95226 2.805009,0.13472 2.925524,0.16461 3.529986,0.87574 0.461952,0.54347 0.584681,0.912 0.468705,1.40737 -0.191557,0.81814 -0.925978,1.88128 -1.413109,2.04559 -0.197125,0.0665 -0.0472,-0.25337 0.33317,-0.71082 0.768612,-0.92437 0.811706,-1.11334 0.421964,-1.85028 -0.432408,-0.81762 -1.347633,-1.03458 -2.551342,-0.6048 -1.590052,0.5677 -2.730124,0.46097 -4.273825,-0.40009 -0.756854,-0.42216 -1.422935,-0.72017 -1.480181,-0.66225 -0.201973,0.20439 0.694012,1.65752 1.338157,2.17027 0.358833,0.28563 1.010125,0.59883 1.447314,0.69601 2.197685,0.48846 3.131103,1.79975 2.394229,3.36346 -0.482178,1.02322 -0.907654,1.14645 -0.73108,0.21172 0.167138,-0.88477 -0.791073,-1.91587 -1.780435,-1.91587 -0.919183,0 -1.616216,-0.3568 -2.671245,-1.36734 -0.716485,-0.68627 -0.824837,-0.72481 -0.817024,-0.29064 0.005,0.27531 0.17246,0.78991 0.372238,1.14356 0.694296,1.22907 0.483693,2.13045 -0.832813,3.56445 -0.667731,0.72733 -1.268193,1.31063 -1.334359,1.29624 -0.06617,-0.0144 -0.591866,-0.56416 -1.168225,-1.22171 z"
+               id="path937" />
+          </g>
+        </g>
+        <rect
+           ry="16"
+           rx="16"
+           y="217"
+           x="-8.8817842e-16"
+           height="80"
+           width="128"
+           id="rect943"
+           style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.74999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
+      </g>
+    </clipPath>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath1034">
+      <rect
+         ry="60.000004"
+         rx="60.000004"
+         y="0"
+         x="-6.0000002e-06"
+         height="300.00003"
+         width="480.00003"
+         id="rect1036"
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.74999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" />
+    </clipPath>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.4"
+     inkscape:cx="199.81634"
+     inkscape:cy="147.8498"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:snap-nodes="false"
+     inkscape:snap-bbox="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:bbox-nodes="true"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="1920"
+     inkscape:window-height="1017"
+     inkscape:window-x="-8"
+     inkscape:window-y="-8"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-217)">
+    <g
+       id="g1032"
+       transform="matrix(0.26666666,0,0,0.26666666,1.32e-6,217)"
+       style="stroke-width:0.9921875"
+       clip-path="url(#clipPath1034)">
+      <rect
+         id="rect988"
+         y="0"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#0000cc;stroke-width:0.9921875;fill-opacity:1" />
+      <rect
+         id="rect990"
+         y="42.856998"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#ffffff;stroke-width:0.9921875" />
+      <rect
+         id="rect992"
+         y="85.713997"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#0000cc;stroke-width:0.9921875;fill-opacity:1" />
+      <rect
+         id="rect994"
+         y="128.571"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#ffffff;stroke-width:0.9921875" />
+      <rect
+         id="rect996"
+         y="171.429"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#0000cc;stroke-width:0.9921875;fill-opacity:1" />
+      <rect
+         id="rect998"
+         y="214.286"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#ffffff;stroke-width:0.9921875" />
+      <rect
+         id="rect1000"
+         y="257.14301"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#0000cc;stroke-width:0.9921875;fill-opacity:1" />
+      <rect
+         id="rect1002"
+         y="85.713997"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#cc0000;stroke-width:0.9921875" />
+      <rect
+         id="rect1004"
+         y="257.14301"
+         x="0"
+         height="42.856998"
+         width="480"
+         style="fill:#cc0000;stroke-width:0.9921875" />
+      <rect
+         id="rect1006"
+         y="0"
+         x="0"
+         height="171.429"
+         width="171.429"
+         style="fill:#00cc00;stroke-width:0.9921875" />
+      <g
+         id="g1010"
+         transform="matrix(0.857,0,0,0.857,85.714,85.714)"
+         style="stroke-width:0.9921875">
+        <path
+           id="path1008"
+           d="m -0.4979217,83.26601 c -0.145988,-0.4037 -1.237967,-2.04811 -2.426622,-3.65425 -3.449295,-4.66079 -4.365689,-6.62777 -4.376537,-9.39392 -0.0072,-1.76577 0.274004,-2.92395 1.111782,-4.58342 0.337642,-0.66879 0.541464,-1.21598 0.452931,-1.21595 -0.08853,1e-5 -0.87165,0.1338 -1.740276,0.29732 -8.2304073,1.5492 -13.0095363,-0.66068 -14.0921003,-6.51624 -0.124856,-0.67532 -0.227006,-1.26578 -0.227006,-1.31213 0,-0.0464 0.591532,0.45097 1.314512,1.10518 0.722978,0.65418 2.020995,1.53857 2.884486,1.96528 1.441057,0.71213 1.717848,0.77568 3.370782,0.7738 1.394326,-10e-4 2.023059,-0.10424 2.785393,-0.455 3.9089623,-1.7982 5.7490643,-7.34628 3.8103923,-11.48871 -0.795102,-1.69893 -1.897149,-2.94272 -3.1406943,-3.54465 -1.674122,-0.81036 -2.181779,-1.78637 -1.754465,-3.37314 0.359727,-1.3358 1.079507,-2.00676 2.308949,-2.15236 3.0819463,-0.36497 3.4291723,-1.37705 3.4448103,-10.04085 0.01,-5.52454 -0.124875,-7.10568 -1.16606,-13.67151 l -0.448445,-2.82796 -0.708217,0.82768 c -1.6324183,1.90784 -2.7843653,4.91142 -3.0630343,7.98656 l -0.05722,0.63166 -0.566893,-0.94749 c -0.311784,-0.52113 -0.686783,-1.39755 -0.833329,-1.94762 -0.146543,-0.55009 -0.331171,-1.00014 -0.41028,-1.00014 -0.07911,0 -2.230636,2.33466 -4.781159,5.18815 l -4.637319,5.18812 0.702256,1.26693 c 0.386236,0.69679 0.878541,1.503 1.094009,1.79157 0.369253,0.49451 0.437524,0.50956 1.188256,0.26183 1.574244,-0.51949 2.863562,0.17935 3.203478,1.73638 0.08097,0.37093 0.405484,1.05343 0.721128,1.51664 1.190229,1.74669 1.351641,3.76197 0.44381,5.54127 -0.540884,1.06012 -2.839561,3.51987 -2.651861,2.83768 0.826914,-3.00534 0.157558,-5.49427 -1.394142,-5.18395 -1.272162,0.2544 -2.315529,-0.63998 -2.907222,-2.49208 -0.135466,-0.42403 -0.360158,-0.8167 -0.499333,-0.8726 -0.139164,-0.056 -0.76173,-0.3042 -1.383468,-0.55175 l -1.130442,-0.45011 0.130204,0.95424 c 0.07163,0.52482 0.186696,1.36955 0.255722,1.87715 0.09562,0.70307 0.246203,0.97789 0.63221,1.15377 0.646815,0.29467 1.34623,1.43548 1.347241,2.1975 8.75e-4,0.66321 -0.438209,1.6204 -0.930879,2.02924 -0.221291,0.18364 -0.284588,0.45214 -0.194908,0.82688 0.355181,1.48415 1.018535,2.09221 2.916465,2.67331 l 0.842298,0.25792 -1.052871,0.46596 c -1.307335,0.57859 -3.432781,0.78747 -4.311123,0.42368 -0.912502,-0.37793 -1.866874,-1.55373 -2.164613,-2.66684 -0.174256,-0.65145 -0.458287,-1.0983 -0.890964,-1.40165 -0.349334,-0.24492 -0.750589,-0.59091 -0.891674,-0.76888 -0.421313,-0.53141 -0.306301,-1.5798 0.265781,-2.42271 0.534048,-0.7869 0.534924,-0.7958 0.282504,-2.87831 -0.139262,-1.14892 -0.312873,-2.06238 -0.385807,-2.0299 -0.0729,0.0325 -0.535154,0.49977 -1.027171,1.03842 -0.718883,0.78702 -0.931738,1.20773 -1.083855,2.14229 -0.363079,2.23063 -1.013458,2.98651 -2.432064,2.82663 -0.85103,-0.0959 -1.001266,-0.0444 -1.459579,0.50019 -0.708812,0.8423 -0.8576,2.11772 -0.436577,3.74237 0.189715,0.73204 0.30698,1.36891 0.260593,1.41529 -0.202955,0.20293 -2.318421,-2.32972 -2.787525,-3.33723 -0.827461,-1.77719 -0.658132,-3.33353 0.562899,-5.17377 0.330415,-0.49797 0.600758,-1.18961 0.600758,-1.53698 0,-1.4549 0.948061,-2.29507 2.589797,-2.29507 0.857675,0 0.927179,-0.0535 2.219917,-1.70777 0.733988,-0.93927 1.255,-1.77516 1.157815,-1.85752 -1.636152,-1.38657 -1.912757,-1.50765 -2.885252,-1.26278 -1.776799,0.44735 -3.082277,-0.44118 -3.082277,-2.09784 0,-0.77432 -0.652324,-1.28572 -1.640021,-1.28572 -0.830858,0 -1.311974,0.2323 -2.518846,1.21615 -0.492215,0.40126 -0.894937,0.66772 -0.894937,0.59213 0,-0.65903 1.432025,-3.62491 2.136748,-4.42545 1.403237,-1.594 2.666069,-1.96836 4.315462,-1.27926 0.443477,0.1853 1.068422,0.26898 1.519906,0.20355 0.438908,-0.0636 0.989137,0.005 1.286864,0.16217 0.705814,0.37082 1.415886,1.47331 1.581968,2.45622 0.130142,0.77024 0.22014,0.84971 1.804119,1.59295 0.916928,0.43025 1.750812,0.75016 1.853082,0.71093 0.19284,-0.074 10.560279,-12.10327 10.560279,-12.25304 0,-0.0465 -0.416648,0.004 -0.925879,0.11274 -0.509232,0.10862 -1.369037,0.16818 -1.91067,0.13238 l -0.98479,-0.0651 1.365624,-0.89555 c 2.206226,-1.44681 3.81776,-3.22978 4.892181,-5.41262 1.626562,-3.30457 1.858797,-4.54205 1.858789,-9.90452 0,-4.68455 -0.369126,-8.03303 -1.230167,-11.15938 l -0.289952,-1.05276 -0.01887,1.79523 c -0.07107,6.77837 -2.199454,13.56837 -6.046739,19.29062 -1.3945,2.07409 -1.677776,2.32759 -1.473179,1.31829 0.81585,-4.02475 0.863275,-4.57893 0.863275,-10.08671 0,-6.64968 -0.414792,-9.46548 -2.140145,-14.52826 -0.8003,-2.34834 -0.924337,-2.41804 -0.749404,-0.4211 0.285138,3.25507 0.149043,10.84517 -0.243513,13.58075 -1.02437,7.13849 -3.231402,13.30615 -6.541164,18.27965 -0.669171,1.00556 -1.258589,1.82828 -1.309819,1.82828 -0.05125,0 -0.0281,-2.15555 0.05141,-4.79011 0.298963,-9.90748 -0.786777,-22.54379 -2.766045,-32.1925 -0.305392,-1.48879 -0.572312,-2.72611 -0.593141,-2.7496 -0.02085,-0.0235 -0.04321,2.29785 -0.04966,5.15857 -0.008,3.37346 -0.136143,6.33377 -0.365585,8.42382 -1.47111,13.40078 -5.922023,25.62081 -13.115915,36.00994 -1.641117,2.37002 -3.46265,4.71836 -3.57373,4.60728 -0.04321,-0.0433 0.44584,-2.39229 1.08687,-5.22011 2.866205,-12.64386 4.477349,-23.02068 5.146251,-33.14519 0.38283,-5.79453 0.213929,-16.26987 -0.332087,-20.59665 l -0.128095,-1.01511 -0.605758,1.80247 c -1.93418,5.75526 -6.413075,11.28668 -13.57343,16.76313 -1.05494,0.80685 -1.976792,1.46699 -2.048572,1.46699 -0.07179,0 0.472184,-1.20804 1.208814,-2.68456 3.005245,-6.02381 3.845807,-9.83991 4.324757,-19.6342 0.244222,-4.9941 0.629927,-8.60698 1.232451,-11.54427 l 0.395972,-1.93038 -2.049855,1.96733 c -2.013904,1.93279 -4.939761,4.06676 -7.023559,5.12259 -1.751282,0.88735 -4.850162,1.92858 -7.11074,2.38922 -1.173095,0.23903 -2.170954,0.39654 -2.217472,0.35002 -0.04648,-0.0465 0.439313,-0.53208 1.079618,-1.07907 1.760578,-1.50395 4.965413,-5.3448 6.935767,-8.3122 2.283913,-3.43961 4.458409,-7.4804 6.977861,-12.96669 3.210501,-6.99109 3.919323,-8.48056 5.218238,-10.96524 2.245695,-4.29573 4.802489,-7.14562 7.299545,-8.13627 0.922147,-0.36584 1.587267,-0.45868 3.263912,-0.45557 3.798607,0.007 6.358608,1.22631 7.450204,3.54836 0.592297,1.25995 0.594997,1.68011 0.0087,1.3664 -0.240681,-0.1288 -0.574366,-0.18171 -0.741516,-0.11762 -0.225925,0.0868 -0.08971,0.33731 0.530849,0.97669 0.982889,1.0127 1.366897,2.02298 1.230126,3.23628 -0.218157,1.9353 -1.200434,3.22208 -4.265766,5.5882 -1.209053,0.93327 -2.304846,1.89594 -2.435091,2.13928 -0.369317,0.69 -0.07323,1.64843 1.067022,3.45401 1.389277,2.19988 1.40167,2.83393 0.103462,5.29485 -0.828195,1.56993 -0.947583,1.96083 -0.947583,3.10253 0,1.43008 0.219023,1.81099 1.042347,1.81279 1.584045,0.004 2.904679,0.86911 3.519135,2.30674 0.194067,0.45406 0.423595,2.18443 0.587602,4.42981 0.148017,2.0266 0.342201,3.85777 0.431506,4.06931 0.219066,0.51888 0.964626,0.77296 2.277036,0.77596 2.183744,0.005 4.048415,0.74186 5.254125,2.07631 0.721612,0.79865 0.941694,1.33476 1.348593,3.2851 0.206695,0.9907 0.791465,1.36612 2.135052,1.37071 0.805633,0.004 1.036316,-0.11862 2.054271,-1.08131 l 1.14673,-1.08442 1.039832,1.08442 c 1.003813,1.04684 1.07977,1.08442 2.192647,1.08442 1.970776,0 2.200179,-0.32242 1.377142,-1.93555 -1.421376,-2.78584 -1.688058,-5.66045 -0.702001,-7.56709 l 0.317084,-0.61311 -0.794306,0.42567 c -0.43688,0.23413 -1.016882,0.4257 -1.288901,0.4257 -0.447926,0 -0.388592,-0.11712 0.629121,-1.24162 0.618036,-0.68288 1.540367,-2.03306 2.04963,-3.00041 1.909462,-3.62698 3.076334,-5.08175 6.6433,-8.28238 1.0302823,-0.92446 2.4291753,-2.38037 3.1086523,-3.23533 l 1.235424,-1.55449 -0.06105,-1.60514 c -0.07434,-1.95496 -0.225161,-2.02974 -1.970135,-0.97717 -1.9818213,1.19545 -3.7878443,1.6561 -5.9589663,1.51988 -1.000135,-0.0627 -2.139278,-0.23115 -2.531437,-0.37423 l -0.713015,-0.26018 1.555314,-0.56933 c 3.683552,-1.34837 7.6074843,-3.92422 8.4280933,-5.53257 0.489663,-0.95974 0.477997,-2.80622 -0.02157,-3.40806 -0.151679,-0.18273 -0.949805,-0.68358 -1.773623,-1.11299 -1.0194203,-0.53134 -2.0575033,-1.33717 -3.2500313,-2.52289 -2.062057,-2.05025 -2.706309,-2.28248 -4.334373,-1.56238 -0.811904,0.3591 -1.06129,0.60972 -1.425086,1.43205 l -0.440961,0.99676 -0.479283,-0.94296 c -1.396195,-2.74694 -1.494739,-5.49649 -0.285021,-7.95352 0.840245,-1.70661 3.103138,-4.0165 5.030308,-5.13478 0.748392,-0.43426 1.461854,-0.78957 1.585454,-0.78957 0.123607,0 0.581075,0.4672 1.016601,1.03825 0.749412,0.98259 1.991868,1.92212 3.4003343,2.57125 0.559771,0.25799 0.648145,0.42689 0.781391,1.49349 0.234265,1.8752 1.008819,2.98697 2.693662,3.86633 1.153842,0.60223 5.001235,0.6605 7.649785,0.11586 1.926541,-0.39616 3.089541,-0.86948 3.089541,-1.25741 0,-0.09 -0.548612,-0.27688 -1.219142,-0.41536 -1.657789,-0.34238 -3.254599,-1.39186 -4.157527,-2.73249 -1.645391,-2.44302 -3.227693,-3.58361 -5.339243,-3.84871 -0.814799,-0.10236 -1.672951,-0.30559 -1.907018,-0.45176 -0.509409,-0.31809 -1.430848,-1.97826 -1.216798,-2.1923 0.08299,-0.083 1.374651,-0.19505 2.870361,-0.24906 3.235874,-0.11685 5.040792,0.23657 6.887712,1.34862 2.688314,1.61865 7.117294,2.41074 11.1780677,1.99909 1.317603,-0.13357 3.019078,-0.38742 3.781048,-0.56412 0.761971,-0.17669 1.434485,-0.27219 1.49447,-0.21221 0.138148,0.13814 -0.471604,1.10535 -1.170716,1.85707 -0.295054,0.31726 -0.472439,0.64084 -0.39418,0.7191 0.26762,0.26759 3.439928,0.33359 4.553763,0.0947 0.611724,-0.13119 1.723959,-0.48322 2.471627,-0.78231 0.747675,-0.29909 1.411491,-0.49172 1.475146,-0.42805 0.06367,0.0636 -0.232102,0.58954 -0.657251,1.16864 -0.818858,1.1154 -2.658227,2.60899 -4.489136,3.64524 -0.60804,0.34413 -1.105525,0.67625 -1.105525,0.73807 0,0.27422 2.738491,-0.2266 3.749984,-0.68581 l 1.117797,-0.50747 -0.134422,0.46771 c -0.905379,3.15029 -4.188289,6.27932 -8.367282,7.97506 l -1.525166,0.6189 1.895176,-0.0876 c 1.71288,-0.0792 3.174225,-0.4428 5.211735,-1.29677 0.249332,-0.10449 0.368507,-0.0589 0.368507,0.14116 0,0.16286 -0.780244,0.66833 -1.737243,1.12547 -7.434081,3.55107 -10.2543557,8.17316 -8.903884,14.59241 0.626965,2.98021 1.266092,4.16245 3.376106,6.24503 1.855287,1.83116 2.444584,2.66879 4.396633,6.24933 0.421766,0.77361 1.249196,1.93431 1.83874,2.57929 0.979236,1.07134 1.028851,1.17273 0.573865,1.17273 -0.273924,0 -0.855485,-0.19157 -1.292356,-0.4257 l -0.794306,-0.42567 0.317083,0.61311 c 0.986058,1.90664 0.719375,4.78124 -0.702,7.56709 -0.823037,1.61313 -0.593635,1.93555 1.377142,1.93555 1.112878,0 1.188836,-0.0376 2.192649,-1.08442 l 1.039833,-1.08442 1.146728,1.08442 c 1.017955,0.96264 1.24864,1.08407 2.054271,1.0813 1.343588,-0.005 1.928357,-0.38001 2.135053,-1.37071 0.406899,-1.95033 0.626981,-2.48644 1.348593,-3.28509 1.20571,-1.33446 3.07038,-2.07133 5.254124,-2.07631 1.312412,-0.004 2.057972,-0.25708 2.277036,-0.77596 0.0893,-0.21154 0.283483,-2.04271 0.431508,-4.06931 0.164005,-2.24538 0.393536,-3.97575 0.587601,-4.42981 0.61159,-1.4309 1.913903,-2.2896 3.508604,-2.31345 0.969408,-0.0145 1.263451,-0.44329 1.263451,-1.84249 0,-0.70136 -0.07108,-1.30678 -0.157925,-1.34539 -0.08686,-0.0386 -0.560662,-0.83992 -1.052878,-1.78072 -1.200553,-2.29465 -1.20688,-3.11074 -0.03813,-4.91882 0.471237,-0.72903 0.988691,-1.4574 1.149887,-1.61856 0.377905,-0.37789 0.612418,-1.62631 0.382458,-2.03599 -0.09796,-0.17452 -1.23854,-1.13139 -2.534622,-2.12638 -3.227994,-2.47813 -4.21569,-3.75057 -4.43731,-5.7166 -0.13677,-1.21331 0.247239,-2.22358 1.230128,-3.23628 0.620558,-0.63938 0.756773,-0.89 0.530848,-0.97669 -0.16715,-0.0641 -0.500836,-0.0112 -0.741516,0.11762 -0.586241,0.3137 -0.583551,-0.10649 0.0088,-1.3664 0.997278,-2.1214 3.171153,-3.27529 6.728346,-3.5714 5.206204,-0.4334 8.32498,2.20075 12.462891,10.52628 0.863348,1.73707 2.360197,4.91119 3.326341,7.05357 5.064809,11.23111 8.274332,16.41765 13.327992,21.53787 3.24762,3.29042 3.30204,3.09 -0.59944,2.20753 -5.046073,-1.14136 -9.15775,-3.40585 -13.162177,-7.24901 l -2.049854,-1.96732 0.395971,1.93037 c 0.602533,2.9373 0.98823,6.55018 1.232452,11.54428 0.478957,9.79429 1.319512,13.61038 4.324758,19.6342 0.73663,1.47652 1.280593,2.68456 1.208813,2.68456 -0.255945,0 -4.00293,-2.9662 -6.12064,-4.84521 -2.510777,-2.2278 -4.609203,-4.60825 -6.388253,-7.24679 -1.585285,-2.35119 -2.341542,-3.84231 -3.113102,-6.13813 l -0.605763,-1.80247 -0.128097,1.01512 c -0.546017,4.32678 -0.714918,14.80212 -0.332086,20.59665 0.6689,10.12451 2.280053,20.50133 5.146259,33.14519 0.641029,2.82782 1.130118,5.17687 1.086869,5.22011 -0.111087,0.11111 -1.932613,-2.23726 -3.573738,-4.60728 -2.621817,-3.78633 -5.936109,-9.77985 -7.239552,-13.09191 -0.18918,-0.4807 -0.424328,-0.9287 -0.522555,-0.99553 -0.291513,-0.19834 -2.241565,-5.72705 -3.030435,-8.59175 -2.127802,-7.72691 -3.269293,-17.15647 -2.92144,-24.13321 0.08084,-1.62128 0.09914,-2.90038 0.04066,-2.84248 -0.175688,0.17397 -1.181825,5.29484 -1.731543,8.81293 -1.252809,8.01777 -1.929279,18.46398 -1.696088,26.19173 0.07951,2.63456 0.102625,4.79011 0.05141,4.79011 -0.05125,0 -0.640638,-0.82273 -1.309818,-1.82828 -3.309763,-4.9735 -5.516795,-11.14118 -6.541165,-18.27965 -0.392556,-2.7356 -0.528658,-10.3257 -0.243512,-13.58076 0.174925,-1.99694 0.05085,-1.92724 -0.749412,0.42111 -1.725352,5.06277 -2.140146,7.87857 -2.140146,14.52824 0,5.50779 0.04744,6.06197 0.863276,10.08671 0.204604,1.00932 -0.07864,0.75582 -1.473171,-1.31828 -3.847288,-5.72225 -5.975655,-12.51226 -6.04675,-19.29062 l -0.01879,-1.79524 -0.289451,1.05277 c -0.159192,0.57904 -0.402722,1.76339 -0.541172,2.63193 -0.13845,0.86854 -0.32057,1.62652 -0.404702,1.68444 -0.259701,0.17873 -0.622198,4.30017 -0.622198,7.07413 0,2.53964 0.317514,5.55139 0.60827,5.76968 0.07713,0.058 0.313559,0.67377 0.525413,1.3686 1.006479,3.30094 3.071288,6.05686 5.9547,7.94774 l 1.365617,0.89556 -0.984783,0.0651 c -0.54164,0.0358 -1.401431,-0.0237 -1.91068,-0.13239 -0.509231,-0.10862 -0.92588,-0.15934 -0.92588,-0.11274 0,0.14977 10.367442,12.17905 10.560282,12.25303 0.102275,0.0393 0.936155,-0.28069 1.853083,-0.71093 1.58398,-0.74325 1.673977,-0.82271 1.804119,-1.59296 0.166075,-0.98291 0.876162,-2.0854 1.581967,-2.45622 0.297729,-0.15644 0.847957,-0.22577 1.286874,-0.16216 0.451484,0.0654 1.07642,-0.0184 1.519896,-0.20356 0.950976,-0.3973 2.092132,-0.4023 2.846079,-0.0125 0.646546,0.3343 1.953259,1.70322 2.356831,2.469 0.142708,0.27081 0.325958,0.53976 0.407226,0.59765 0.141092,0.10049 1.052655,2.40888 1.052655,2.66562 0,0.0677 -0.152235,-0.004 -0.338319,-0.1576 C 42.74759,27.81947 42.43201,27.59468 42.232365,27.47435 42.03272,27.354 41.545343,27.04275 41.1493,26.78262 c -1.372159,-0.90126 -3.14169,-0.44436 -3.14169,0.8112 0,1.65666 -1.305481,2.54518 -3.082279,2.09783 -0.972486,-0.24486 -1.2491,-0.12386 -2.885251,1.26277 -0.09719,0.0824 0.423827,0.91825 1.157815,1.85754 1.292739,1.65428 1.362242,1.70775 2.219907,1.70775 1.641747,0 2.589808,0.84017 2.589808,2.29508 0,0.34737 0.270343,1.039 0.600765,1.53698 1.221032,1.84024 1.390345,3.39658 0.562883,5.17378 -0.469097,1.0075 -2.584571,3.54016 -2.787518,3.33722 -0.0464,-0.0464 0.07091,-0.68326 0.260592,-1.41529 0.421027,-1.62465 0.272246,-2.90007 -0.436576,-3.74237 -0.458312,-0.54463 -0.608557,-0.59611 -1.459577,-0.5002 -1.418607,0.15988 -2.068988,-0.596 -2.432066,-2.82662 -0.152115,-0.93456 -0.364972,-1.35528 -1.083861,-2.14229 -0.49201,-0.53865 -0.954238,-1.00592 -1.027164,-1.03841 -0.0729,-0.0325 -0.246546,0.88096 -0.385807,2.0299 -0.252413,2.0825 -0.251545,2.0914 0.282502,2.8783 0.572083,0.84292 0.687095,1.89129 0.265791,2.42272 -0.141092,0.17795 -0.542348,0.52395 -0.891673,0.76887 -0.432678,0.30336 -0.716718,0.7502 -0.890974,1.40166 -0.297745,1.1131 -1.252109,2.28891 -2.164619,2.66683 -0.878343,0.36378 -3.003773,0.1549 -4.311117,-0.42369 l -1.05287,-0.46596 0.842307,-0.2579 c 1.897921,-0.58112 2.561274,-1.18916 2.916449,-2.67332 0.0897,-0.37474 0.02643,-0.64324 -0.194902,-0.82689 -0.49267,-0.40883 -0.93177,-1.36603 -0.930879,-2.02923 7.97e-4,-0.76202 0.700426,-1.90284 1.347241,-2.19751 0.386007,-0.17586 0.536602,-0.45068 0.632211,-1.15376 0.069,-0.5076 0.184101,-1.35232 0.255714,-1.87715 l 0.130213,-0.95425 -1.130443,0.45012 c -0.62173,0.24756 -1.244303,0.49585 -1.383469,0.55176 -0.139175,0.056 -0.363874,0.44856 -0.499332,0.87258 -0.591693,1.85212 -1.63506,2.74649 -2.907226,2.49209 -1.5517,-0.31032 -2.221054,2.17861 -1.394133,5.18395 0.187699,0.68219 -2.110985,-1.77756 -2.651869,-2.83767 -0.90783,-1.77932 -0.746418,-3.79459 0.443803,-5.54129 0.315652,-0.46321 0.640162,-1.14569 0.721142,-1.51663 0.33991,-1.55703 1.629227,-2.25587 3.203482,-1.73637 0.750725,0.24773 0.819003,0.23268 1.188249,-0.26185 0.215466,-0.28855 0.707771,-1.09477 1.094009,-1.79157 l 0.702255,-1.26691 -4.637313,-5.18813 c -2.55053,-2.85349 -4.749428,-5.18814 -4.886454,-5.18814 -0.137018,0 -0.369023,0.45005 -0.515568,1.00012 -0.146544,0.55009 -0.521544,1.42651 -0.833336,1.94764 l -0.566885,0.94748 -0.05722,-0.63165 c -0.278699,-3.07511 -1.430648,-6.0787 -3.0630647,-7.98653 l -0.708217,-0.82769 -0.448451,2.82796 c -1.041179,6.56584 -1.17604,8.14698 -1.16606,13.67151 0.01568,8.6638 0.362864,9.67588 3.4448057,10.04085 1.229452,0.1456 1.949224,0.81656 2.308959,2.15237 0.427305,1.58676 -0.08035,2.56277 -1.754465,3.37313 -1.2435537,0.60193 -2.3455927,1.84572 -3.1407027,3.54465 -1.938646,4.14238 -0.09986,9.68697 3.8103987,11.48971 0.777698,0.35855 1.385093,0.45415 2.890672,0.455 1.77324,7.9e-4 2.015536,-0.053 3.476078,-0.7748 0.863499,-0.42671 2.161506,-1.3111 2.884487,-1.96528 0.722981,-0.6542 1.314522,-1.15153 1.314522,-1.10518 0,0.0464 -0.102163,0.63682 -0.227015,1.31213 -0.522524,2.82631 -2.150907,5.0849 -4.390704,6.08995 -2.278914,1.02262 -5.913435,1.17892 -9.9119787,0.42629 -0.868617,-0.16352 -1.651741,-0.29731 -1.740275,-0.29732 -0.08853,-2e-5 0.115288,0.54716 0.452933,1.21596 0.837776,1.65946 1.118712,2.81764 1.11178,4.58341 -0.01087,2.76615 -0.927241,4.73313 -4.376523,9.39392 -1.188654,1.60614 -2.280641,3.25056 -2.426629,3.65425 C 0.1389303,83.66971 -0.0372037,84 -0.1064847,84 c -0.06924,0 -0.245417,-0.33029 -0.39141,-0.73397 z m -2.419204,-9.27522 c 0.06836,-0.17802 -0.02936,-0.87118 -0.217185,-1.54034 -0.44046,-1.56965 -0.436363,-3.45656 0.01025,-4.7025 0.289627,-0.80801 0.304892,-1.04566 0.08423,-1.31153 -0.651875,-0.7854 -1.600796,0.76784 -1.834402,3.0026 -0.134447,1.28623 0.317665,3.53252 0.885363,4.39884 0.359647,0.54885 0.89075,0.62463 1.071772,0.15293 z m 6.693003,-0.15293 c 0.567695,-0.86632 1.019803,-3.11261 0.885348,-4.39884 -0.233592,-2.23476 -1.182521,-3.788 -1.834398,-3.0026 -0.220663,0.26587 -0.205407,0.50352 0.08422,1.31153 0.446596,1.24594 0.450703,3.13285 0.01025,4.7025 -0.187773,0.66916 -0.285505,1.36232 -0.21718,1.54034 0.181021,0.4717 0.712126,0.39592 1.07178,-0.15293 z M -7.9253007,62.20663 c 2.312533,-1.10813 4.557536,-3.60281 4.16431,-4.62743 -0.252204,-0.65717 -0.914842,-0.32521 -1.694482,0.84892 -0.835324,1.25796 -2.708583,2.64253 -4.165901,3.0791 -0.9298923,0.27857 -1.3244233,0.66264 -1.1493553,1.11882 0.198572,0.5174 1.1978233,0.37011 2.8454283,-0.41941 z m 18.4829927,0.41941 c 0.175076,-0.45618 -0.219462,-0.84025 -1.1493537,-1.11882 -1.457317,-0.43657 -3.330567,-1.82114 -4.165893,-3.0791 -0.779643,-1.17413 -1.442278,-1.50609 -1.694485,-0.84892 -0.393226,1.02462 1.851773,3.5193 4.164314,4.62743 1.647603,0.78952 2.6468557,0.93681 2.8454177,0.41941 z M -23.690926,46.61299 c 0,-0.0654 -0.286412,-0.35983 -0.63647,-0.65437 -0.803339,-0.67589 -1.09989,-1.21798 -1.247175,-2.27979 -0.107068,-0.77192 -0.175188,-0.84781 -0.816088,-0.90931 -1.024976,-0.0984 -1.764191,0.44897 -1.592314,1.17894 0.223576,0.94956 0.98904,2.17231 1.551532,2.47841 0.510268,0.27769 2.740515,0.42916 2.740515,0.18612 z m 50.076952,-0.1763 c 0.595616,-0.30799 1.363158,-1.50574 1.594494,-2.48823 0.171877,-0.72997 -0.567339,-1.27728 -1.592314,-1.17894 -0.640901,0.0615 -0.709029,0.13739 -0.816098,0.90931 -0.147276,1.06181 -0.443835,1.6039 -1.247166,2.27979 -0.350058,0.29454 -0.636469,0.58899 -0.636469,0.65437 0,0.24692 2.150938,0.10637 2.697553,-0.1763 z m -63.105782,-5.45467 c 0.746156,-0.92841 0.70525,-1.53836 -0.161284,-2.40481 l -0.538489,-0.53842 -0.647952,0.99599 c -0.887362,1.364 -1.006106,2.80938 -0.346142,4.21326 l 0.483358,1.02819 0.283045,-1.24619 c 0.172187,-0.75808 0.535462,-1.56027 0.927464,-2.04802 z m 75.348128,1.79951 c 0.418965,-1.04769 0.18442,-2.59733 -0.56823,-3.75428 l -0.643066,-0.98846 -0.538489,0.53842 c -0.872724,0.87265 -0.911898,1.4879 -0.153334,2.4081 0.42152,0.51131 0.743554,1.22318 0.90339,1.99696 0.268766,1.30111 0.410544,1.27266 0.999729,-0.20074 z m -66.77388,-0.44059 c 0.764702,-0.53412 1.524491,-0.68822 2.298684,-0.46619 0.514478,0.14752 0.720705,0.10986 0.982388,-0.17922 0.736798,-0.81407 0.260578,-2.04024 -1.05501,-2.71646 -0.366818,-0.18854 -0.478878,-0.55283 -0.684374,-2.22483 -0.320632,-2.60876 -0.313829,-3.2873 0.03295,-3.2873 0.153284,0 1.108851,0.35956 2.123471,0.79898 1.842888,0.79817 1.845148,0.8001 2.21601,1.8955 0.446693,1.31935 0.963851,1.93772 1.620567,1.93772 0.383198,0 0.582895,-0.22069 0.930232,-1.028 0.243258,-0.56543 0.719685,-1.29377 1.058727,-1.61855 0.729905,-0.69923 0.769158,-1.10307 0.18001,-1.85196 -0.480484,-0.61078 -0.904997,-0.67449 -2.102872,-0.31565 l -0.798277,0.23916 -1.805696,-1.65243 c -0.993131,-0.90883 -1.805696,-1.80359 -1.805696,-1.98834 0,-0.18476 2.347726,-2.95806 5.217167,-6.16288 l 5.217173,-5.82697 0.240888,-1.52965 c 0.13249,-0.84132 0.218522,-1.55202 0.191192,-1.57936 -0.0273,-0.0272 -0.374451,0.0435 -0.771377,0.15726 -0.396919,0.11386 -0.974539,0.20695 -1.283594,0.20695 -0.47602,0 -1.433202,1.01157 -6.261476,6.61724 -3.134757,3.63949 -5.785243,6.6702 -5.889964,6.73491 -0.217496,0.13441 -4.27527,-1.70895 -4.481662,-2.03592 -0.07457,-0.11823 -0.19413,-0.58055 -0.265599,-1.02744 -0.07186,-0.44953 -0.395081,-1.10925 -0.723419,-1.47668 -0.485396,-0.5432 -0.695872,-0.63844 -1.155776,-0.52303 -0.422753,0.10612 -0.562309,0.27245 -0.562309,0.67026 0,0.76649 -0.483439,1.80502 -1.122145,2.41059 -0.670786,0.63601 -0.729911,1.517 -0.141306,2.10556 0.488936,0.48887 0.717806,0.5091 1.970609,0.17405 0.920228,-0.24609 0.929102,-0.24313 2.309684,0.77046 0.762247,0.55961 1.432318,1.13844 1.489056,1.28629 0.05675,0.14784 -0.624754,1.22237 -1.514429,2.38786 l -1.617591,2.11907 h -1.061236 c -2.086232,0 -2.616612,1.13269 -1.18216,2.52464 0.50429,0.48935 0.888244,1.10216 1.00698,1.60716 0.153429,0.6526 0.298278,0.82877 0.722574,0.87883 0.769945,0.0909 1.211495,-0.52756 1.511126,-2.11634 0.233249,-1.23677 0.406134,-1.55405 1.624604,-2.9814 1.227628,-1.43806 2.110912,-2.00622 2.110912,-1.35777 0,0.13174 0.153398,1.44979 0.34089,2.929 l 0.340881,2.68944 -0.551462,0.72294 c -0.680861,0.89258 -0.712458,1.7046 -0.08346,2.14513 0.576834,0.40399 0.51104,0.40747 1.184095,-0.0626 z m 57.472648,0.0626 c 0.629011,-0.44054 0.597415,-1.25256 -0.08346,-2.14513 l -0.551461,-0.72294 0.340889,-2.68944 c 0.187485,-1.47921 0.34089,-2.79726 0.34089,-2.929 0,-0.64845 0.883285,-0.0803 2.110905,1.35777 1.218468,1.42735 1.391364,1.74463 1.624603,2.9814 0.29963,1.58878 0.741181,2.20717 1.511134,2.11634 0.424297,-0.0501 0.569138,-0.22623 0.722575,-0.87884 0.118725,-0.505 0.502682,-1.1178 1.00698,-1.60715 1.434451,-1.39196 0.904065,-2.52465 -1.182168,-2.52465 h -1.061235 l -1.617583,-2.11906 c -0.889676,-1.16549 -1.571167,-2.24002 -1.51443,-2.38786 0.05675,-0.14785 0.726809,-0.72668 1.489058,-1.2863 1.380579,-1.01358 1.389445,-1.01655 2.309675,-0.77045 1.252801,0.33504 1.481679,0.31482 1.970609,-0.17406 0.588613,-0.58855 0.529486,-1.46955 -0.1413,-2.10555 -0.638705,-0.60558 -1.122151,-1.6441 -1.122151,-2.4106 0,-0.39781 -0.139557,-0.56416 -0.562302,-0.67025 -0.459911,-0.11536 -0.670388,-0.0203 -1.155783,0.52303 -0.328339,0.36743 -0.651519,1.02715 -0.723411,1.47668 -0.07147,0.44689 -0.190986,0.90924 -0.265607,1.02744 -0.206386,0.32697 -4.264159,2.17033 -4.481664,2.03591 -0.104725,-0.0648 -2.74349,-3.08181 -5.863939,-6.70468 l -5.673533,-6.58703 -1.007705,-0.13009 c -0.554239,-0.0715 -1.220912,-0.19096 -1.481497,-0.26535 -0.351729,-0.10036 -0.473791,-0.0475 -0.473791,0.20517 0,0.18723 0.09005,0.3404 0.200115,0.3404 0.110062,0 0.263362,0.55895 0.340657,1.2421 l 0.140544,1.24209 5.239583,5.85199 c 2.881765,3.21859 5.239583,6.00315 5.239583,6.18791 0,0.18474 -0.812564,1.0795 -1.805695,1.98834 l -1.805696,1.65243 -0.798278,-0.23916 c -1.197879,-0.35885 -1.622398,-0.29513 -2.102875,0.31565 -0.589147,0.74889 -0.549894,1.15272 0.180011,1.85195 0.339043,0.32479 0.815469,1.05313 1.058728,1.61856 0.347335,0.8073 0.547036,1.028 0.930233,1.028 0.656717,0 1.173876,-0.61837 1.620568,-1.93773 0.370861,-1.0954 0.373121,-1.09732 2.216009,-1.89549 1.01462,-0.43943 1.970179,-0.79898 2.123464,-0.79898 0.346794,0 0.353607,0.67854 0.03295,3.2873 -0.205494,1.67199 -0.317554,2.03629 -0.684371,2.22483 -1.315589,0.67622 -1.791808,1.90239 -1.055012,2.71646 0.261684,0.28912 0.46791,0.32674 0.982379,0.17921 0.776336,-0.22264 1.547412,-0.0666 2.266189,0.4586 0.647054,0.47279 0.642199,0.4725 1.21659,0.0702 z m -46.063418,-1.83041 c 0.671329,-1.47882 0.48215,-3.1969 -0.492661,-4.47427 -0.319303,-0.41841 -0.324749,-0.41794 -0.847844,0.0735 -0.289563,0.272 -0.637965,0.76367 -0.77422,1.09259 -0.224317,0.5415 -0.183815,0.67756 0.428556,1.4395 0.462179,0.57507 0.710596,1.14575 0.784637,1.80254 0.05961,0.52859 0.195403,0.96106 0.301819,0.96106 0.106416,0 0.376289,-0.40268 0.599713,-0.89485 z m 34.371633,-0.0662 c 0.07401,-0.65679 0.322457,-1.22748 0.784637,-1.80254 0.61237,-0.76193 0.652871,-0.89801 0.428555,-1.4395 -0.136254,-0.32893 -0.484657,-0.8206 -0.774219,-1.09259 -0.523097,-0.49137 -0.52854,-0.49185 -0.847845,-0.0735 -0.568,0.74428 -0.90826,1.75274 -0.903517,2.6778 0.0047,0.92811 0.666832,2.69133 1.010569,2.69133 0.106413,0 0.24224,-0.43248 0.30182,-0.96106 z m -54.43804,-15.16271 c 0.64094,-1.12542 0.6211,-1.85076 -0.05905,-2.16065 -0.738786,-0.33659 -1.681943,-0.30585 -2.426318,0.079 -0.571772,0.29564 -1.880564,1.8371 -1.880564,2.21488 0,0.0875 0.544865,0.10974 1.210804,0.0495 1.017121,-0.092 1.295023,-0.0395 1.737243,0.32832 0.672052,0.55894 0.843785,0.49705 1.417922,-0.51109 z m 75.017329,0.51205 c 0.514104,-0.38005 0.796998,-0.43262 1.781359,-0.33103 0.643608,0.0665 1.170198,0.0471 1.170198,-0.043 0,-0.38165 -1.30513,-1.92211 -1.880564,-2.21965 -1.236924,-0.63957 -2.962658,-0.25026 -2.962658,0.66836 0,0.64831 0.867257,2.37713 1.192474,2.37713 0.04839,0 0.363046,-0.20332 0.699191,-0.45181 z M -45.220865,13.41164 c 0.24251,-0.30271 1.509647,-5.53162 2.130253,-8.79066 0.595401,-3.12666 1.223315,-7.81165 1.515122,-11.30472 0.367831,-4.40309 0.143823,-14.42762 -0.413791,-18.51751 -0.520836,-3.8202 -1.652339,-9.54857 -1.959082,-9.91814 -0.298822,-0.36002 -0.938801,-0.33475 -1.083688,0.0429 -0.06494,0.16927 0.111275,1.32995 0.391609,2.5793 1.382862,6.16276 1.891499,11.16742 1.889311,18.5895 -0.0024,8.86962 -0.922109,16.18589 -3.139001,24.9765 -0.320594,1.27125 -0.419545,2.03666 -0.292612,2.26345 0.228497,0.40828 0.669284,0.4447 0.961879,0.0795 z m 91.611734,-0.0795 c 0.126926,-0.22679 0.02801,-0.9922 -0.292619,-2.26347 -2.216893,-8.79061 -3.136389,-16.10686 -3.139,-24.97648 -0.0024,-7.4221 0.506455,-12.42675 1.88931,-18.5895 0.280347,-1.24936 0.45657,-2.41004 0.391619,-2.5793 -0.144898,-0.37755 -0.784868,-0.40281 -1.083695,-0.0427 -0.237879,0.28661 -1.422316,5.91543 -1.647047,7.82733 -0.07576,0.64465 -0.203784,1.1721 -0.284461,1.1721 -0.333424,0 -0.698681,4.91161 -0.793049,10.66407 -0.07824,4.76932 -0.02078,6.99834 0.257831,10.00118 0.197187,2.12523 0.431508,3.9115 0.520718,3.96948 0.08921,0.058 0.230079,0.6739 0.313041,1.36873 0.414547,3.47199 2.453052,12.96342 2.905467,13.52811 0.292595,0.36522 0.733382,0.3288 0.961885,-0.0795 z M -28.533439,-2.01233 c 0.384564,-0.46333 0.161123,-9.38324 -0.311165,-12.42187 -0.421041,-2.70885 -1.411483,-6.69194 -1.94795,-7.83369 -0.392628,-0.83564 -1.168892,-1.18421 -1.384733,-0.62181 -0.06431,0.16763 0.164275,1.17925 0.508014,2.24803 1.333241,4.14548 1.865577,7.8259 1.994207,13.78745 0.055,2.5477 0.141673,4.75063 0.192672,4.89538 0.12668,0.35957 0.629641,0.33122 0.948955,-0.0535 z m 58.013379,0.0535 c 0.05101,-0.14474 0.137701,-2.34767 0.192665,-4.89537 0.128629,-5.96153 0.660965,-9.64196 1.994214,-13.78744 0.343739,-1.0688 0.572345,-2.0804 0.508015,-2.24802 -0.215841,-0.5624 -0.992105,-0.21384 -1.384734,0.6218 -0.536468,1.14173 -1.526916,5.12484 -1.94795,7.8337 -0.472288,3.0386 -0.69573,11.95852 -0.311164,12.42185 0.319314,0.38471 0.822274,0.41306 0.948954,0.0535 z m -36.6298997,-11.2405 c 0.347216,-3.24193 -0.386605,-6.79811 -2.642288,-12.80471 -1.5573363,-4.14699 -2.0061213,-5.88428 -1.8016303,-6.97421 0.157925,-0.84173 0.976348,-1.87442 1.8390433,-2.32048 0.447807,-0.23156 0.601474,-0.44849 0.554,-0.78203 -0.147689,-1.03767 -1.6991433,-0.42051 -2.9941993,1.19109 -0.624982,0.77773 -0.650666,0.88823 -0.63607,2.73719 0.01418,1.79173 0.09272,2.13332 1.121363,4.87452 2.8246553,7.52726 3.1802203,8.97212 3.1802203,12.92267 0,2.82756 0.09914,3.13659 0.878007,2.73682 0.247876,-0.12721 0.395813,-0.5935 0.501554,-1.58086 z m 15.466446,-1.16094 c 0,-3.94495 0.356409,-5.39265 3.1802187,-12.91769 1.028644,-2.7412 1.107227,-3.08279 1.12137,-4.87452 0.01456,-1.84896 -0.011,-1.95946 -0.63607,-2.73719 -1.295063,-1.6116 -2.8465167,-2.22876 -2.9942067,-1.19109 -0.04751,0.33354 0.106188,0.55047 0.554,0.78203 0.8626967,0.44606 1.6811177,1.47875 1.8390427,2.32048 0.204611,1.09054 -0.244445,2.82765 -1.8056637,6.98496 -2.121865,5.65023 -2.614193,7.75508 -2.621491,11.20766 -0.0056,2.49047 0.03789,2.83885 0.383038,3.0912 0.838525,0.61308 0.979762,0.2288 0.979762,-2.66584 z m -62.3214803,-9.20288 c 0.0048,-0.19027 0.0016,-2.00411 -0.008,-4.03078 -0.01711,-3.75557 0.168359,-6.12091 0.759319,-9.68536 0.378422,-2.28251 1.545437,-7.42696 2.158085,-9.51327 0.35165,-1.19753 0.370791,-1.46388 0.128566,-1.78971 -0.555981,-0.74787 -1.001505,-0.0837 -1.734474,2.5854 -1.84115,6.70473 -2.639866,12.11795 -2.663504,18.05156 -0.01608,4.03359 0.01377,4.4088 0.371499,4.67038 0.465889,0.34063 0.976379,0.1918 0.988515,-0.28822 z m 109.600286,-2.02753 c 0.356655,-5.23205 -0.674783,-13.0654 -2.686928,-20.40619 -0.731671,-2.6693 -1.176995,-3.33359 -1.733215,-2.5854 -0.242225,0.32583 -0.223092,0.59218 0.128565,1.78971 0.612649,2.08631 1.779663,7.23076 2.158085,9.51327 0.600137,3.61981 0.773614,5.92404 0.750359,9.96652 -0.02396,4.16618 0.06016,4.56435 0.872795,4.12949 0.287215,-0.1537 0.389653,-0.63692 0.510339,-2.4074 z m -108.766727,-35.5607 c 3.813352,-7.56696 5.471446,-9.65081 7.749165,-9.73894 0.544339,-0.0211 1.060767,-0.0472 1.147628,-0.058 0.304645,-0.038 0.154424,-1.02875 -0.175156,-1.15522 -0.680568,-0.26112 -2.088414,-0.11449 -2.962522,0.30866 -1.230113,0.59543 -2.807019,2.38062 -4.213233,4.76976 -1.26228,2.14457 -5.125661,10.02236 -5.125661,10.45167 0,0.34523 0.454666,0.78668 0.729116,0.7079 0.120162,-0.0345 1.402959,-2.41312 2.850663,-5.28585 z m 110.00155,4.86941 c 0.168296,-0.26678 -0.19475,-1.20508 -1.624459,-4.19856 -3.428293,-7.178 -5.534861,-10.32188 -7.579303,-11.31146 -0.879163,-0.42558 -2.286348,-0.57323 -2.968437,-0.31152 -0.329571,0.12646 -0.479792,1.11722 -0.175156,1.15521 0.08686,0.0112 0.603297,0.0369 1.147627,0.058 2.278096,0.0881 4.079588,2.34548 7.667645,9.60784 1.344542,2.7214 2.543089,5.06961 2.663425,5.21824 0.263388,0.32527 0.57545,0.24706 0.868658,-0.21773 z m -62.7597837,-11.3698 c -0.57256,-0.60797 -1.713272,-1.95815 -2.534903,-3.00038 -1.6280233,-2.06515 -2.1531343,-2.51898 -4.0010343,-3.45793 -1.94105,-0.98626 -4.495728,-1.39707 -5.076526,-0.81633 -0.372228,0.37219 -0.307262,1.31893 0.115817,1.68773 0.203967,0.1778 0.95625,0.3715 1.684881,0.4338 1.32557,0.11336 2.830201,0.78416 4.404083,1.96346 1.033355,0.77427 6.2383033,4.29507 6.3495993,4.29507 0.05451,0 -0.369357,-0.49744 -0.941917,-1.10542 z m -21.1304563,10.8171 c -1.827129,-0.60118 -4.664102,-2.8633 -4.932646,-3.93318 -0.07059,-0.2811 0.01059,-0.84353 0.180393,-1.2498 0.454914,-1.08867 1.046424,-0.98753 2.432558,0.41591 1.533976,1.55314 2.542483,2.00418 4.475789,2.00181 1.586202,-10e-4 2.664406,-0.31832 7.468459,-2.19138 1.066209,-0.41571 2.388132,-0.77922 2.937596,-0.80781 0.917533,-0.0478 1.015966,-0.005 1.206619,0.52294 0.114175,0.31621 0.155998,0.62652 0.09293,0.68957 -0.06303,0.063 -0.681037,0.2144 -1.373271,0.33633 -0.831921,0.14653 -1.966393,0.61169 -3.34639,1.37211 -4.302678,2.37093 -5.537723,2.88143 -7.141578,2.95192 -0.810708,0.0356 -1.710923,-0.0131 -2.000461,-0.10836 z m 21.2176033,-18.18649 c -0.65611,-0.50559 -0.549908,-1.57408 0.18419,-1.85316 1.209084,-0.45965 2.127372,1.05706 1.082883,1.78858 -0.56625,0.39659 -0.819481,0.40949 -1.267073,0.0646 z"
+           inkscape:connector-curvature="0"
+           style="fill:#ffffff;stroke-width:0.9921875" />
+      </g>
+    </g>
+    <path
+       style="fill:#000000;fill-opacity:0.33333333;fill-rule:nonzero;stroke:none;stroke-width:1.74999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal"
+       d="m 16.000088,216.99972 c -8.8639991,0 -16.000056560368,7.13605 -16.000056560368,16.00005 v 48.00017 C 3.1439632e-5,289.86394 7.1360889,297 16.000088,297 h 95.999822 c 8.864,0 16.00006,-7.13606 16.00006,-16.00006 v -48.00017 c 0,-8.864 -7.13606,-16.00005 -16.00006,-16.00005 z m 0,4.00027 h 95.999822 c 6.648,0 12.0003,5.35178 12.0003,11.99978 v 48.00017 c 0,6.648 -5.3523,11.99979 -12.0003,11.99979 H 16.000088 c -6.648,0 -11.9997842,-5.35179 -11.9997842,-11.99979 v -48.00017 c 0,-6.648 5.3517842,-11.99978 11.9997842,-11.99978 z"
+       id="rect815-8"
+       inkscape:connector-curvature="0" />
+  </g>
 </svg>
index 675e8b0db107ec5d691128e9de89b90e8047dae6..775f9a6e766b5654235d2e483f2f3dfb2b377613 100644 (file)
@@ -29,7 +29,7 @@
                                transform="matrix(0.26666666,0,0,0.26666666,1.32e-6,217)"
                                id="g1032">
                        <rect
-                                       style="fill:#0039a6;stroke-width:0.9921875"
+                                       style="fill:#0000cc;stroke-width:0.9921875"
                                        width="480"
                                        height="42.856998"
                                        x="0"
@@ -43,7 +43,7 @@
                                        y="42.856998"
                                        id="rect990"/>
                        <rect
-                                       style="fill:#0039a6;stroke-width:0.9921875"
+                                       style="fill:#0000cc;stroke-width:0.9921875"
                                        width="480"
                                        height="42.856998"
                                        x="0"
@@ -57,7 +57,7 @@
                                        y="128.571"
                                        id="rect994"/>
                        <rect
-                                       style="fill:#0039a6;stroke-width:0.9921875"
+                                       style="fill:#0000cc;stroke-width:0.9921875"
                                        width="480"
                                        height="42.856998"
                                        x="0"
@@ -71,7 +71,7 @@
                                        y="214.286"
                                        id="rect998"/>
                        <rect
-                                       style="fill:#0039a6;stroke-width:0.9921875"
+                                       style="fill:#0000cc;stroke-width:0.9921875"
                                        width="480"
                                        height="42.856998"
                                        x="0"