diff --git a/app/views/layouts/_favicon.html.erb b/app/views/layouts/_favicon.html.erb new file mode 100644 index 00000000..6ca95a02 --- /dev/null +++ b/app/views/layouts/_favicon.html.erb @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index a561deb1..00353fa5 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -12,6 +12,7 @@ <%# is set in _seo.html.erb %> <%= render 'layouts/seo' %> + <%= render 'layouts/favicon' %> </head> <body> diff --git a/public/android-chrome-144x144.png b/public/android-chrome-144x144.png new file mode 100644 index 00000000..da4968ed Binary files /dev/null and b/public/android-chrome-144x144.png differ diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 00000000..081f6a0e Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-256x256.png b/public/android-chrome-256x256.png new file mode 100644 index 00000000..b5f5a8dd Binary files /dev/null and b/public/android-chrome-256x256.png differ diff --git a/public/android-chrome-36x36.png b/public/android-chrome-36x36.png new file mode 100644 index 00000000..17180ef1 Binary files /dev/null and b/public/android-chrome-36x36.png differ diff --git a/public/android-chrome-384x384.png b/public/android-chrome-384x384.png new file mode 100644 index 00000000..376a9f1a Binary files /dev/null and b/public/android-chrome-384x384.png differ diff --git a/public/android-chrome-48x48.png b/public/android-chrome-48x48.png new file mode 100644 index 00000000..8a0147fa Binary files /dev/null and b/public/android-chrome-48x48.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 00000000..704d00ed Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/android-chrome-72x72.png b/public/android-chrome-72x72.png new file mode 100644 index 00000000..6a252c91 Binary files /dev/null and b/public/android-chrome-72x72.png differ diff --git a/public/android-chrome-96x96.png b/public/android-chrome-96x96.png new file mode 100644 index 00000000..3aca0dca Binary files /dev/null and b/public/android-chrome-96x96.png differ diff --git a/public/apple-touch-icon-114x114.png b/public/apple-touch-icon-114x114.png new file mode 100644 index 00000000..980f3087 Binary files /dev/null and b/public/apple-touch-icon-114x114.png differ diff --git a/public/apple-touch-icon-120x120.png b/public/apple-touch-icon-120x120.png new file mode 100644 index 00000000..ad3bdcf7 Binary files /dev/null and b/public/apple-touch-icon-120x120.png differ diff --git a/public/apple-touch-icon-144x144.png b/public/apple-touch-icon-144x144.png new file mode 100644 index 00000000..d78a1c10 Binary files /dev/null and b/public/apple-touch-icon-144x144.png differ diff --git a/public/apple-touch-icon-152x152.png b/public/apple-touch-icon-152x152.png new file mode 100644 index 00000000..337a830a Binary files /dev/null and b/public/apple-touch-icon-152x152.png differ diff --git a/public/apple-touch-icon-180x180.png b/public/apple-touch-icon-180x180.png new file mode 100644 index 00000000..3833a417 Binary files /dev/null and b/public/apple-touch-icon-180x180.png differ diff --git a/public/apple-touch-icon-57x57.png b/public/apple-touch-icon-57x57.png new file mode 100644 index 00000000..9e4dde23 Binary files /dev/null and b/public/apple-touch-icon-57x57.png differ diff --git a/public/apple-touch-icon-60x60.png b/public/apple-touch-icon-60x60.png new file mode 100644 index 00000000..a5e0b4a2 Binary files /dev/null and b/public/apple-touch-icon-60x60.png differ diff --git a/public/apple-touch-icon-72x72.png b/public/apple-touch-icon-72x72.png new file mode 100644 index 00000000..97021a3a Binary files /dev/null and b/public/apple-touch-icon-72x72.png differ diff --git a/public/apple-touch-icon-76x76.png b/public/apple-touch-icon-76x76.png new file mode 100644 index 00000000..998f7af6 Binary files /dev/null and b/public/apple-touch-icon-76x76.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 00000000..72045e89 Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/browserconfig.xml b/public/browserconfig.xml new file mode 100644 index 00000000..bcbd6c9f --- /dev/null +++ b/public/browserconfig.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<browserconfig> + <msapplication> + <tile> + <square70x70logo src="/mstile-70x70.png"/> + <square150x150logo src="/mstile-150x150.png"/> + <square310x310logo src="/mstile-310x310.png"/> + <wide310x150logo src="/mstile-310x150.png"/> + <TileColor>#2b5797</TileColor> + </tile> + </msapplication> +</browserconfig> diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 00000000..de65311a Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-194x194.png b/public/favicon-194x194.png new file mode 100644 index 00000000..cc3965c5 Binary files /dev/null and b/public/favicon-194x194.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 00000000..0bea840b Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico index e69de29b..03521231 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 00000000..8dd56b5b --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,52 @@ +{ + "name": "Notebook", + "icons": [ + { + "src": "\/android-chrome-36x36.png", + "sizes": "36x36", + "type": "image\/png" + }, + { + "src": "\/android-chrome-48x48.png", + "sizes": "48x48", + "type": "image\/png" + }, + { + "src": "\/android-chrome-72x72.png", + "sizes": "72x72", + "type": "image\/png" + }, + { + "src": "\/android-chrome-96x96.png", + "sizes": "96x96", + "type": "image\/png" + }, + { + "src": "\/android-chrome-144x144.png", + "sizes": "144x144", + "type": "image\/png" + }, + { + "src": "\/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image\/png" + }, + { + "src": "\/android-chrome-256x256.png", + "sizes": "256x256", + "type": "image\/png" + }, + { + "src": "\/android-chrome-384x384.png", + "sizes": "384x384", + "type": "image\/png" + }, + { + "src": "\/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image\/png" + } + ], + "theme_color": "#ffffff", + "display": "standalone" +} diff --git a/public/mstile-144x144.png b/public/mstile-144x144.png new file mode 100644 index 00000000..b17f7bec Binary files /dev/null and b/public/mstile-144x144.png differ diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png new file mode 100644 index 00000000..348b9b8e Binary files /dev/null and b/public/mstile-150x150.png differ diff --git a/public/mstile-310x150.png b/public/mstile-310x150.png new file mode 100644 index 00000000..43eef3aa Binary files /dev/null and b/public/mstile-310x150.png differ diff --git a/public/mstile-310x310.png b/public/mstile-310x310.png new file mode 100644 index 00000000..f1535951 Binary files /dev/null and b/public/mstile-310x310.png differ diff --git a/public/mstile-70x70.png b/public/mstile-70x70.png new file mode 100644 index 00000000..8539d99a Binary files /dev/null and b/public/mstile-70x70.png differ diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg new file mode 100644 index 00000000..aeb38ad0 --- /dev/null +++ b/public/safari-pinned-tab.svg @@ -0,0 +1,152 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" + "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> +<svg version="1.0" xmlns="http://www.w3.org/2000/svg" + width="2463.000000pt" height="2463.000000pt" viewBox="0 0 2463.000000 2463.000000" + preserveAspectRatio="xMidYMid meet"> +<metadata> +Created by potrace 1.11, written by Peter Selinger 2001-2013 +</metadata> +<g transform="translate(0.000000,2463.000000) scale(0.100000,-0.100000)" +fill="#000000" stroke="none"> +<path d="M15555 23871 c-1437 -563 -2384 -934 -5280 -2068 -1045 -409 -2325 +-911 -2845 -1114 -520 -204 -2072 -812 -3450 -1351 -1378 -540 -2508 -984 +-2512 -987 -4 -4 24 -89 64 -189 39 -100 69 -184 67 -186 -2 -1 -208 -83 -458 +-180 -250 -98 -473 -190 -497 -206 -52 -36 -87 -78 -122 -144 -24 -46 -27 -61 +-27 -156 0 -93 3 -111 27 -162 33 -71 100 -138 176 -175 51 -25 67 -28 157 +-28 l100 1 460 181 c252 100 460 181 460 180 14 -26 157 -408 154 -411 -2 -2 +-197 -79 -434 -171 -236 -92 -456 -181 -488 -198 -69 -36 -120 -90 -156 -166 +-23 -49 -26 -69 -26 -156 0 -89 3 -106 28 -157 36 -74 101 -139 175 -175 51 +-25 67 -28 157 -28 l100 1 460 181 459 181 73 -185 c40 -102 76 -195 79 -207 +5 -20 -25 -33 -428 -190 -238 -93 -455 -180 -481 -193 -66 -33 -128 -97 -163 +-169 -26 -53 -29 -69 -29 -159 0 -89 3 -106 28 -157 36 -74 101 -139 175 -175 +51 -25 68 -28 157 -28 l100 0 460 181 459 181 78 -199 c43 -110 78 -203 78 +-207 0 -4 -188 -81 -418 -171 -229 -89 -445 -175 -479 -190 -75 -34 -141 -100 +-180 -178 -25 -51 -28 -68 -28 -157 0 -89 3 -106 27 -155 35 -71 107 -143 177 +-177 42 -21 73 -28 140 -31 99 -5 71 -14 696 231 l340 134 72 -185 c40 -101 +76 -194 79 -206 5 -21 -20 -32 -438 -196 -244 -95 -456 -180 -472 -188 -56 +-28 -132 -110 -162 -175 -25 -54 -29 -74 -29 -152 0 -78 4 -98 29 -152 34 -73 +113 -153 183 -186 40 -18 65 -22 153 -21 l105 0 455 180 455 180 81 -205 c70 +-176 79 -207 65 -212 -401 -155 -904 -356 -927 -370 -49 -30 -113 -105 -142 +-167 -23 -49 -27 -70 -27 -147 0 -78 4 -98 29 -152 34 -73 113 -153 183 -186 +40 -18 65 -22 153 -22 l105 1 449 177 c247 98 453 176 458 175 5 -2 45 -93 88 +-203 67 -172 75 -201 61 -206 -664 -261 -903 -356 -931 -374 -52 -33 -109 +-100 -138 -164 -23 -47 -27 -70 -27 -146 0 -77 4 -99 27 -147 71 -153 227 +-240 390 -217 30 4 244 82 502 183 248 97 454 176 458 176 5 0 13 -10 18 -22 +74 -187 149 -382 147 -384 -1 -1 -200 -79 -442 -174 -242 -94 -462 -183 -488 +-198 -203 -110 -246 -394 -85 -568 80 -87 208 -133 320 -114 31 5 260 88 508 +186 259 101 455 173 460 168 9 -9 161 -397 157 -400 -1 -1 -200 -80 -442 -174 +-242 -95 -462 -184 -489 -198 -89 -48 -156 -147 -177 -260 -36 -195 106 -390 +308 -422 40 -7 78 -7 114 0 30 6 256 90 502 186 247 97 453 172 457 168 10 +-10 161 -396 157 -400 -1 -2 -204 -82 -450 -178 -246 -97 -461 -183 -478 -192 +-47 -24 -115 -96 -143 -151 -114 -226 19 -490 269 -534 46 -8 75 -7 125 4 36 +7 263 91 504 186 241 95 442 169 447 164 11 -11 161 -395 156 -399 -2 -3 -206 +-83 -453 -180 -247 -97 -471 -189 -497 -206 -167 -106 -211 -356 -91 -520 72 +-100 177 -152 304 -152 73 1 87 5 538 182 255 100 467 182 470 182 9 0 165 +-400 159 -406 -3 -3 -210 -86 -461 -184 -287 -113 -474 -191 -502 -212 -57 +-41 -118 -131 -134 -198 -7 -29 -11 -86 -8 -129 4 -62 11 -88 38 -139 74 -140 +234 -221 382 -193 30 5 256 89 502 185 247 97 452 176 456 176 4 0 21 -37 38 +-82 18 -46 53 -137 80 -204 l48 -121 -455 -178 c-251 -98 -472 -188 -491 -200 +-51 -32 -118 -108 -143 -163 -17 -38 -21 -67 -22 -147 0 -94 2 -105 33 -167 +70 -144 238 -230 388 -200 30 6 257 91 505 188 247 97 451 175 453 173 16 -19 +156 -402 150 -408 -5 -4 -202 -83 -439 -176 -236 -92 -450 -178 -475 -190 -62 +-32 -124 -99 -157 -170 -25 -53 -28 -72 -28 -155 0 -88 3 -101 33 -162 71 +-145 237 -230 388 -200 32 7 260 91 506 188 247 97 451 174 453 172 14 -14 +156 -401 149 -407 -5 -5 -202 -84 -439 -176 -236 -92 -452 -179 -478 -193 -62 +-33 -122 -99 -155 -170 -23 -49 -27 -70 -27 -152 0 -82 4 -103 26 -150 41 -85 +90 -135 177 -177 71 -35 82 -38 161 -37 l86 0 464 183 c254 100 465 180 468 +178 2 -3 39 -94 82 -203 53 -134 75 -201 67 -205 -6 -4 -209 -84 -451 -179 +-242 -94 -458 -182 -481 -195 -55 -32 -111 -96 -143 -164 -22 -48 -26 -69 -26 +-151 1 -83 4 -102 28 -150 42 -87 89 -135 175 -177 70 -35 82 -38 161 -38 l86 +1 464 182 c255 101 465 181 468 178 2 -2 35 -84 73 -181 39 -98 71 -179 73 +-181 2 -2 532 204 1178 457 646 253 4117 1613 7714 3021 3597 1409 6541 2562 +6543 2563 2 2 -344 888 -1995 5105 -94 239 -535 1367 -981 2505 -446 1139 +-1027 2621 -1290 3295 -264 674 -557 1421 -651 1660 -93 239 -537 1371 -985 +2515 -1120 2862 -1118 2855 -1130 2854 -6 0 -605 -233 -1331 -518z m-12774 +-5521 c272 -86 348 -430 138 -624 -55 -51 -74 -60 -314 -155 -141 -56 -258 +-101 -260 -101 -2 0 22 26 54 58 31 31 66 77 78 103 88 188 11 405 -175 496 +-50 24 -68 28 -154 28 -53 0 -95 1 -95 2 4 4 514 201 532 206 47 12 137 6 196 +-13z m12697 -635 c2 -14 -28 -52 -100 -125 -745 -760 -1211 -1909 -1547 -3815 +l-37 -210 -275 -203 c-151 -112 -278 -208 -284 -214 -15 -15 4 -5 245 136 216 +128 260 144 268 104 2 -10 -60 -228 -138 -485 l-141 -467 -207 -203 -207 -202 +90 35 c50 19 101 33 115 32 42 -5 31 -62 -44 -243 -276 -661 -638 -1198 -1064 +-1579 -198 -178 -263 -226 -297 -224 -30 3 -30 4 -29 58 2 59 76 379 175 755 +225 855 525 1774 870 2670 48 126 87 231 85 233 -2 2 -51 -109 -109 -245 -645 +-1515 -1023 -2836 -1177 -4108 l-20 -171 21 -79 c11 -44 36 -116 56 -160 19 +-44 37 -93 40 -110 4 -25 -40 -104 -273 -498 -260 -440 -278 -468 -303 -465 +-18 2 -27 10 -29 25 -4 25 132 821 218 1283 131 701 295 1432 436 1943 19 71 +34 131 31 133 -11 11 -201 -707 -294 -1111 -18 -78 -19 -80 -48 -80 -27 0 -33 +8 -77 90 -95 178 -164 393 -193 596 -29 204 -16 550 28 769 12 62 14 65 43 68 +29 3 37 -4 99 -87 37 -50 69 -91 71 -91 2 0 -1 12 -7 28 -63 162 -129 362 +-129 391 0 20 46 163 103 321 96 268 104 285 128 288 24 3 33 -8 99 -125 39 +-70 69 -119 65 -108 -4 11 -36 99 -71 196 -35 97 -64 183 -64 191 0 29 264 +670 428 1040 175 392 472 999 675 1378 89 167 95 175 126 178 30 3 33 1 58 +-57 15 -34 28 -59 30 -57 3 2 -5 36 -17 75 -37 125 -47 103 258 556 251 373 +276 406 299 403 30 -3 36 -13 57 -83 l16 -50 -4 111 -3 110 99 120 c504 605 +1022 1017 1623 1290 171 78 227 90 233 49z m-12267 -465 c35 -11 86 -37 113 +-57 210 -161 189 -486 -39 -618 -30 -17 -407 -170 -525 -213 -8 -3 3 9 26 25 +233 174 206 513 -52 639 -53 26 -69 29 -156 29 -53 0 -96 1 -95 2 7 6 481 189 +517 199 66 19 139 17 211 -6z m474 -1119 c79 -37 143 -99 181 -177 26 -53 29 +-69 29 -154 0 -84 -3 -102 -29 -158 -20 -43 -47 -80 -87 -116 -55 -51 -74 -60 +-314 -155 -141 -56 -258 -101 -260 -101 -2 0 25 28 59 63 81 80 109 148 110 +263 1 73 -2 86 -37 156 -42 86 -89 133 -177 176 -48 24 -67 27 -152 27 l-97 0 +197 78 c331 131 356 139 440 133 53 -3 90 -13 137 -35z m430 -1100 c79 -37 +148 -104 183 -179 24 -50 27 -70 27 -157 0 -89 -3 -106 -28 -157 -32 -65 -102 +-140 -156 -167 -30 -15 -471 -191 -521 -208 -8 -3 -1 4 16 15 90 58 159 171 +170 277 13 119 -47 259 -139 326 -78 57 -123 72 -224 73 -50 1 -90 2 -89 3 6 +6 515 202 536 206 59 13 162 -2 225 -32z m445 -1109 c202 -101 264 -354 133 +-542 -54 -77 -108 -108 -330 -195 -109 -43 -225 -88 -258 -101 -59 -23 -60 +-23 -30 -2 130 95 192 260 151 404 -33 112 -106 197 -216 247 -34 15 -67 20 +-137 21 -50 1 -91 2 -90 2 10 8 485 190 522 200 81 22 167 10 255 -34z m416 +-1091 c83 -39 138 -91 174 -165 74 -151 54 -304 -55 -424 -46 -51 -98 -78 +-321 -166 -104 -41 -214 -84 -244 -96 -58 -23 -58 -21 3 24 21 15 53 51 72 79 +128 196 56 447 -155 545 -46 21 -70 26 -147 26 l-92 1 237 93 c130 52 260 100 +287 108 71 20 165 10 241 -25z m416 -1091 c113 -42 204 -154 229 -283 28 -141 +-49 -309 -175 -382 -31 -17 -341 -143 -526 -213 -8 -3 9 14 38 37 180 144 190 +413 21 565 -71 64 -143 90 -250 91 l-86 0 246 98 c135 54 262 102 281 107 52 +14 158 4 222 -20z m9815 -880 c450 -34 881 -233 1316 -607 67 -59 97 -91 97 +-106 0 -14 37 -59 108 -131 l107 -109 -113 102 c-80 71 -120 101 -138 101 -15 +0 -48 19 -82 46 -89 73 -297 207 -422 272 -330 174 -660 263 -970 265 -306 1 +-551 -74 -783 -241 -234 -168 -377 -394 -546 -859 -44 -122 -96 -262 -116 +-310 -214 -517 -626 -955 -1116 -1188 -188 -88 -381 -148 -604 -186 -162 -28 +-592 -40 -609 -17 -6 8 -18 17 -26 21 -13 4 -12 6 1 6 9 1 19 8 23 16 4 11 22 +15 69 15 91 0 276 25 411 55 685 154 1318 636 1619 1233 71 141 97 204 192 +472 124 346 226 528 400 708 210 219 457 358 740 417 67 14 146 23 290 34 11 +0 79 -4 152 -9z m-9360 -235 c186 -92 261 -307 171 -494 -12 -25 -47 -71 -77 +-102 -54 -54 -63 -58 -301 -152 -135 -53 -254 -99 -265 -103 -11 -4 3 14 32 +40 34 30 64 71 85 114 30 61 33 74 33 162 0 88 -3 101 -33 162 -65 133 -178 +202 -334 203 l-87 0 237 93 c130 52 260 100 287 108 78 22 166 11 252 -31z +m328 -1066 c152 -28 263 -131 301 -279 39 -151 -35 -327 -170 -404 -32 -19 +-264 -113 -526 -214 -8 -3 5 10 30 29 146 113 191 300 112 461 -64 131 -179 +201 -329 202 -45 1 -80 2 -79 3 10 10 484 190 526 199 71 16 67 16 135 3z +m431 -1100 c126 -23 241 -114 286 -227 33 -85 32 -207 -4 -284 -31 -66 -95 +-140 -152 -173 -23 -13 -147 -65 -276 -115 -279 -110 -273 -107 -235 -83 47 +31 114 109 138 161 17 38 21 66 22 152 0 97 -2 110 -30 163 -64 127 -185 201 +-332 201 -45 1 -81 2 -80 3 11 10 486 189 527 199 71 16 66 16 136 3z m488 +-1116 c232 -71 328 -355 189 -561 -57 -84 -106 -112 -389 -223 -142 -55 -263 +-103 -269 -106 -10 -5 9 11 60 48 84 61 137 172 137 289 0 110 -29 179 -106 +256 -79 79 -147 107 -263 108 -45 1 -81 2 -80 2 22 15 514 198 546 204 55 9 +109 4 175 -17z m453 -1104 c77 -29 162 -111 199 -191 73 -161 23 -355 -118 +-455 -40 -29 -546 -238 -555 -229 -2 1 16 17 40 34 87 62 140 172 140 292 0 +109 -29 178 -107 256 -79 79 -147 107 -263 108 -45 1 -81 2 -80 3 8 7 484 189 +522 199 62 16 149 10 222 -17z m456 -1114 c71 -35 140 -107 174 -183 71 -153 +20 -349 -115 -447 -39 -28 -274 -126 -517 -216 -44 -17 -47 -17 -25 -2 51 35 +104 99 133 162 27 56 31 77 31 146 -1 113 -29 181 -108 261 -79 79 -147 107 +-263 108 -45 1 -74 4 -65 7 9 4 100 39 202 79 320 126 304 121 405 117 75 -3 +100 -8 148 -32z m427 -1099 c75 -37 143 -106 177 -180 25 -53 28 -73 28 -156 +0 -77 -4 -104 -23 -144 -28 -62 -79 -124 -129 -159 -29 -20 -360 -157 -543 +-224 -8 -4 6 10 32 31 95 73 143 175 143 301 0 71 -4 89 -33 147 -66 134 -187 +211 -334 212 -42 0 -76 2 -75 3 3 3 379 150 457 179 92 35 220 30 300 -10z +m434 -1102 c263 -130 280 -502 30 -650 -31 -18 -438 -184 -544 -221 -8 -3 5 8 +30 24 110 72 164 176 164 313 0 114 -32 188 -115 264 -75 70 -147 98 -251 100 +-42 0 -76 2 -75 3 3 2 467 184 497 194 14 5 66 7 115 6 76 -3 99 -8 149 -33z +m427 -1097 c67 -32 151 -117 182 -184 18 -40 22 -66 22 -153 0 -96 -3 -110 +-28 -158 -35 -67 -89 -126 -141 -157 -35 -20 -518 -215 -533 -215 -3 0 12 13 +33 29 54 39 92 86 123 151 21 46 26 70 26 145 0 80 -3 97 -31 155 -17 36 -50 +84 -73 107 -76 75 -204 121 -301 107 -25 -4 -43 -4 -40 -1 6 6 419 170 485 +193 26 9 72 13 130 11 73 -3 101 -8 146 -30z"/> +<path d="M12966 13805 c-9 -26 -7 -32 5 -12 6 10 9 21 6 23 -2 3 -7 -2 -11 +-11z"/> +<path d="M11861 11374 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> +</g> +</svg>