Changed to custom icon contributed by cluck's deSiGN studio

This commit is contained in:
moparisthebest 2013-02-27 20:32:38 -05:00
parent 76db3f584a
commit 5bea2330ab
9 changed files with 189 additions and 185 deletions

3
.gitignore vendored
View File

@ -14,3 +14,6 @@ gen/
.idea/ .idea/
*.iml *.iml
*.eml *.eml
*.txt
*.html

View File

@ -1,4 +1,4 @@
PagePlusBalance v0.5.1 PagePlusBalance v0.5.2
=========================== ===========================
PagePlusBalance retrieves your balance from PagePlusCellular.com, currently for android phones. PagePlusBalance retrieves your balance from PagePlusCellular.com, currently for android phones.
@ -22,11 +22,13 @@ sending a text of BAL to 7243, and parsing the response.
time you refreshed it. time you refreshed it.
5. Open source under GNU/AGPL! 5. Open source under GNU/AGPL!
Android application icon © Nevit Dilmen [CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0) or GFDL (http://www.gnu.org/copyleft/fdl.html)], via Wikimedia Commons Android application icon © cluck's deSiGN studio [CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0)
https://commons.wikimedia.org/wiki/File:Owl.svg
Changelog Changelog
---------------------- ----------------------
0.5.2:
1. New icon custom made for this app by cluck's deSiGN studio and released under CC-BY-SA-3.0, thanks!
0.5.1: 0.5.1:
1. Page Plus requested I remove the app from the market because I am infringing on their IP, so this update changes the icon. New icon is © Nevit Dilmen [CC-BY-SA-3.0 or GFDL], via Wikimedia Commons 1. Page Plus requested I remove the app from the market because I am infringing on their IP, so this update changes the icon. New icon is © Nevit Dilmen [CC-BY-SA-3.0 or GFDL], via Wikimedia Commons
@ -41,7 +43,7 @@ Changelog
Android market entry Android market entry
---------------------- ----------------------
This is NOT an official page plus application, if it wasn't obvious enough already. I am simply a page plus user who wanted a decent way to check my balance, so I wrote this. Page Plus now all of the sudden after about 3 years wants this app removed from the market because they *may* write their own app *sometime* in the future. If it does get removed, it will always be available at the github URL below (so bookmark it), but maybe you should email page plus to tell them you would like this app to remain on the market if it's helpful to you. This is NOT an official page plus application, if it wasn't obvious enough already. I am simply a page plus user who wanted a decent way to check my balance, so I wrote this. Page Plus now all of the sudden after about 3 years wants this app removed from the market because they *may* write their own app *sometime* in the future. If it does get removed, it will always be available at the github URL below (so bookmark it), but maybe you should email page plus to tell them you would like this app to remain on the market if it's helpful to you.
This app allows Page Plus users to check up on their balance, minutes, texts, and data using the least amount of data transfer possible, OR via SMS. This app allows Page Plus users to check up on their balance, minutes, texts, and data using the least amount of data transfer possible, OR via SMS.
Currently tested and works on Pay-go, TnT1200, and Unlimited plans. If it doesn't work on your plan, email me the HTML source to your page plus account info and I'll add in support. Currently tested and works on Pay-go, TnT1200, and Unlimited plans. If it doesn't work on your plan, email me the HTML source to your page plus account info and I'll add in support.
@ -65,7 +67,7 @@ I'd love to know, so drop me a line if you would.
License: (full text in LICENSE) License: (full text in LICENSE)
---------------------- ----------------------
PagePlusBalance retrieves your balance from PagePlusCellular.com, currently for android phones. PagePlusBalance retrieves your balance from PagePlusCellular.com, currently for android phones.
Copyright (C) 2010 Travis Burtrum (moparisthebest) Copyright (C) 2010-2013 Travis Burtrum (moparisthebest)
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by it under the terms of the GNU Affero General Public License as published by
@ -80,6 +82,10 @@ GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
Contributors
----------------------
* cluck's deSiGN studio for new icon
TODO: TODO:
---------------------- ----------------------
1. You suggest it, via a github issue or email! 1. You suggest it, via a github issue or email!

View File

@ -19,7 +19,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.moparisthebest.pageplus" package="org.moparisthebest.pageplus"
android:versionName="0.5.1" android:versionCode="7"> android:versionName="0.5.2" android:versionCode="8">
<application android:label="@string/app_name" android:icon="@drawable/icon"> <application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name=".Main" <activity android:name=".Main"
android:label="@string/app_name" android:label="@string/app_name"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 KiB

After

Width:  |  Height:  |  Size: 173 KiB

View File

@ -1,9 +1,9 @@
#!/bin/sh #!/bin/sh
# icons # icons
convert -resize 512x512\! ./orig/owl.svg 512x512.png convert -background none -resize 512x512\! ./orig/owl.svg 512x512.png
convert -resize 72x72\! ./orig/owl.svg ../res/drawable-hdpi/icon.png convert -background none -resize 72x72\! ./orig/owl.svg ../res/drawable-hdpi/icon.png
convert -resize 36x36\! ./orig/owl.svg ../res/drawable-ldpi/icon.png convert -background none -resize 36x36\! ./orig/owl.svg ../res/drawable-ldpi/icon.png
convert -resize 48x48\! ./orig/owl.svg ../res/drawable-mdpi/icon.png convert -background none -resize 48x48\! ./orig/owl.svg ../res/drawable-mdpi/icon.png
# screen shots # screen shots
convert -resize 480x854\! ./orig/ss1.png ss1.png convert -resize 480x854\! ./orig/ss1.png ss1.png

View File

@ -1,6 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#" xmlns:cc="http://creativecommons.org/ns#"
@ -9,178 +7,175 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="665.21875" xml:space="preserve"
height="895.25" width="693.71997"
id="svg2" height="694.08002"
version="1.1" version="1.1"
inkscape:version="0.48+devel r10754" style="fill-rule:evenodd"
sodipodi:docname="Yeni belge 1"> viewBox="0 0 7707.9997 7712.0002"
<defs id="svg3029"
id="defs4" /> inkscape:version="0.48.3.1 r9886"
<sodipodi:namedview sodipodi:docname="owl.svg"><metadata
id="base" id="metadata3071"><rdf:RDF><cc:Work
pagecolor="#ffffff" rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
bordercolor="#666666" rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title><cc:license
borderopacity="1.0" rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" /><dc:creator><cc:Agent><dc:title>clucks deSiGN studio</dc:title></cc:Agent></dc:creator></cc:Work><cc:License
inkscape:pageopacity="0.0" rdf:about="http://creativecommons.org/licenses/by-sa/3.0/"><cc:permits
inkscape:pageshadow="2" rdf:resource="http://creativecommons.org/ns#Reproduction" /><cc:permits
inkscape:zoom="0.51729346" rdf:resource="http://creativecommons.org/ns#Distribution" /><cc:requires
inkscape:cx="332.64062" rdf:resource="http://creativecommons.org/ns#Notice" /><cc:requires
inkscape:cy="376.03765" rdf:resource="http://creativecommons.org/ns#Attribution" /><cc:permits
inkscape:document-units="px" rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /><cc:requires
inkscape:current-layer="layer1" rdf:resource="http://creativecommons.org/ns#ShareAlike" /></cc:License></rdf:RDF></metadata><sodipodi:namedview
showgrid="false" pagecolor="#ffffff"
width="0px" bordercolor="#666666"
height="0px" borderopacity="1"
fit-margin-top="0" objecttolerance="10"
fit-margin-left="0" gridtolerance="10"
fit-margin-right="0" guidetolerance="10"
fit-margin-bottom="0" inkscape:pageopacity="0"
inkscape:window-width="1280" inkscape:pageshadow="2"
inkscape:window-height="744" inkscape:window-width="1440"
inkscape:window-x="-4" inkscape:window-height="880"
inkscape:window-y="-4" id="namedview3069"
inkscape:window-maximized="1" /> showgrid="false"
<metadata inkscape:document-units="in"
id="metadata7"> inkscape:zoom="1.0010101"
<rdf:RDF> inkscape:cx="189.67187"
<cc:Work inkscape:cy="386.81963"
rdf:about=""> inkscape:window-x="1438"
<dc:format>image/svg+xml</dc:format> inkscape:window-y="-3"
<dc:type inkscape:window-maximized="1"
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> inkscape:current-layer="svg3029"
<dc:title></dc:title> units="in"
</cc:Work> fit-margin-top="0"
</rdf:RDF> fit-margin-left="0"
</metadata> fit-margin-right="0"
<g fit-margin-bottom="0" />
inkscape:label="Layer 1" <defs
inkscape:groupmode="layer" id="defs3031">
id="layer1" <style
transform="translate(-18.25,-156.25)"> type="text/css"
<rect id="style3033">
style="fill:#d4ff2a;fill-opacity:1;fill-rule:nonzero;stroke:#a0892c;stroke-width:6.11579704;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="rect879" .fil2 {fill:black}
width="659.08429" .fil4 {fill:#00B0F5}
height="889.12793" .fil1 {fill:#5F2F1D}
x="21.323351" .fil5 {fill:#D41E26}
y="159.30972" .fil3 {fill:#F5811E}
ry="49.857281" /> .fil0 {fill:#FEFEFE}
<rect
style="fill:#aa8800;fill-opacity:1;fill-rule:nonzero;stroke:#a0892c;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" </style>
id="rect843"
width="582.64734"
height="93.223572"
x="59.528255"
y="919.00067"
ry="46.611786" />
<g
id="g830"
transform="translate(-7.670771,0)">
<path
style="fill:#c8ab37;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.84627914;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
d="m 368.59132,908.51134 c -1.01048,3.14285 2.40198,9.05662 8.82623,20.18374 12.93477,22.40367 13.67962,23.6355 25.24209,3.75026 10.8739,18.70102 12.2046,18.70102 23.07849,0 11.56248,19.88524 12.30733,18.65341 25.2421,-3.75026 6.85253,-11.86893 10.27936,-17.80443 8.56677,-20.7727 -11.98845,-33.86348 -82.81424,-32.45731 -90.95568,0.58896 z"
id="path828"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csccscc" />
<path
sodipodi:nodetypes="csccscc"
inkscape:connector-curvature="0"
id="path821" </defs>
d="m 257.24094,908.51134 c -1.01048,3.14285 2.40198,9.05662 8.82623,20.18374 12.93477,22.40367 13.67962,23.6355 25.24209,3.75026 10.8739,18.70102 12.2046,18.70102 23.07849,0 11.56248,19.88524 12.30733,18.65341 25.2421,-3.75026 6.85253,-11.86893 10.27936,-17.80443 8.56677,-20.7727 -11.98845,-33.86348 -82.81424,-32.45731 -90.95568,0.58896 z" <path
style="fill:#c8ab37;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.84627914;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> style="fill:#fefefe"
</g> inkscape:connector-curvature="0"
<path id="path3037"
inkscape:connector-curvature="0" d="m 1175,4 5358,0 c 646,0 1175,529 1175,1175 l 0,5358 c 0,646 -529,1175 -1175,1175 l -5358,0 C 528,7712 0,7183 0,6537 L 0,1179 C 0,533 528,4 1175,4 z"
style="fill:#d3bc5f;fill-opacity:1;fill-rule:nonzero;stroke:#c87137;stroke-width:10;stroke-miterlimit:4;stroke-dasharray:none" class="fil0" /><path
d="m 225.8125,303.84375 -4.25,58.53125 c -16.7904,17.12278 -26.59375,37.7862 -26.59375,60 0,32.41512 20.87565,61.44611 53.875,81.125 -68.50294,36.52355 -115.125,108.66754 -115.125,191.71875 0,119.92469 97.20031,217.15625 217.125,217.15625 C 470.76843,912.375 568,815.14344 568,695.21875 568,612.17741 521.39584,540.02768 452.90625,503.5 485.9056,483.82111 506.75,454.79012 506.75,422.375 c 0,-22.21389 -9.80321,-42.87718 -26.59375,-60 l -4.25,-58.53125 -41.21875,28 c -24.20312,-10.64355 -52.96288,-16.8125 -83.8125,-16.8125 -30.84962,0 -59.60938,6.16895 -83.8125,16.8125 l -41.25,-28 z" style="fill:#5f2f1d"
id="path10" /> inkscape:connector-curvature="0"
<g id="path3039"
id="g811" d="m 3848,6868 -6,0 c 0,-84 -14,-176 -48,-253 -32,-71 -89,-141 -175,-141 -50,0 -90,24 -122,59 -31,-35 -71,-59 -121,-59 -49,0 -89,22 -119,56 -31,-34 -70,-56 -119,-56 -77,0 -131,56 -164,120 -20,-14 -40,-28 -60,-42 263,-151 463,-511 521,-954 27,13 57,21 90,21 97,0 173,-69 221,-148 15,-25 9,-58 -14,-75 -24,-18 -57,-15 -77,6 -34,37 -78,65 -130,65 -28,0 -53,-8 -76,-21 2,-37 3,-75 3,-112 0,-462 -152,-867 -381,-1096 -4,-5 -8,-10 -12,-14 2,3 5,5 7,8 -13,-12 -25,-24 -38,-35 38,38 73,82 106,129 147,228 239,552 239,912 0,690 -338,1249 -756,1249 -417,0 -755,-559 -755,-1249 0,-652 301,-1187 686,-1245 46,-39 95,-77 146,-111 -498,-255 -822,-670 -822,-1140 0,-143 31,-281 87,-411 -188,-191 -307,-470 -307,-781 0,-203 149,-229 290,-180 242,85 551,145 895,166 296,-126 641,-198 1011,-198 370,0 716,72 1012,198 348,-20 661,-80 906,-166 140,-49 289,-23 289,180 0,316 -122,598 -315,789 54,128 83,263 83,403 0,469 -324,885 -821,1140 52,35 102,73 148,113 379,68 674,598 674,1243 0,690 -338,1249 -755,1249 -418,0 -756,-559 -756,-1249 0,-336 80,-640 210,-865 41,-66 87,-126 137,-176 -17,14 -33,29 -48,45 16,-21 34,-41 52,-59 -38,35 -73,75 -107,120 -195,237 -321,610 -321,1031 0,39 1,78 4,117 -21,10 -44,16 -68,16 -52,0 -96,-28 -130,-65 -20,-21 -53,-24 -77,-6 -23,17 -29,50 -14,75 48,79 124,148 221,148 29,0 57,-6 82,-17 58,443 260,803 524,953 -19,14 -38,27 -58,40 -33,-64 -87,-121 -165,-121 -50,0 -90,24 -122,59 -31,-35 -71,-59 -122,-59 -49,0 -88,22 -119,56 -30,-34 -70,-56 -119,-56 -85,0 -142,70 -174,141 -34,77 -48,169 -48,253 l -3,0 z"
transform="translate(8,0)"> class="fil1" /><path
<g style="fill:#fefefe"
transform="translate(411.42857,2.8571429)" inkscape:connector-curvature="0"
id="g801"> id="path3041"
<path d="m 3025,1778 c 398,0 731,275 821,645 90,-370 423,-645 821,-645 467,0 845,378 845,845 0,466 -378,844 -845,844 -158,0 -305,-43 -431,-118 45,-118 75,-234 72,-328 -7,-256 -282,-350 -460,-350 -179,0 -454,94 -461,350 -3,94 27,209 72,327 -127,76 -275,119 -434,119 -467,0 -845,-378 -845,-844 0,-467 378,-845 845,-845 z"
sodipodi:type="arc" class="fil0" /><circle
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffe680;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" style="fill:#000000"
id="path797" sodipodi:ry="399"
sodipodi:cx="-137.14285" sodipodi:rx="399"
sodipodi:cy="412.36218" sodipodi:cy="4265"
sodipodi:rx="62.857143" sodipodi:cx="3497"
sodipodi:ry="62.857143" id="circle3043"
d="m -74.285709,412.36218 c 0,34.71504 -28.142101,62.85715 -62.857141,62.85715 -34.71504,0 -62.85715,-28.14211 -62.85715,-62.85715 0,-34.71504 28.14211,-62.85714 62.85715,-62.85714 34.71504,0 62.857141,28.1421 62.857141,62.85714 z" /> r="399"
<path cy="4265"
sodipodi:type="arc" cx="3497"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" class="fil2"
id="path799" transform="translate(-472,-1642)" /><circle
sodipodi:cx="-734.28571" style="fill:#000000"
sodipodi:cy="563.79077" sodipodi:ry="399"
sodipodi:rx="25.714285" sodipodi:rx="399"
sodipodi:ry="25.714285" sodipodi:cy="4265"
d="m -708.57142,563.79077 c 0,14.20161 -11.51268,25.71429 -25.71429,25.71429 -14.2016,0 -25.71428,-11.51268 -25.71428,-25.71429 0,-14.20161 11.51268,-25.71428 25.71428,-25.71428 14.20161,0 25.71429,11.51267 25.71429,25.71428 z" sodipodi:cx="5139"
transform="translate(597.14508,-151.4314)" /> id="circle3045"
</g> r="399"
<g cy="4265"
id="g805" cx="5139"
transform="translate(548.57143,2.8571429)"> class="fil2"
<path transform="translate(-472,-1642)" /><path
d="m -74.285709,412.36218 c 0,34.71504 -28.142101,62.85715 -62.857141,62.85715 -34.71504,0 -62.85715,-28.14211 -62.85715,-62.85715 0,-34.71504 28.14211,-62.85714 62.85715,-62.85714 34.71504,0 62.857141,28.1421 62.857141,62.85714 z" style="fill:#f5811e"
sodipodi:ry="62.857143" inkscape:connector-curvature="0"
sodipodi:rx="62.857143" id="path3047"
sodipodi:cy="412.36218" d="m 3139,6554 c 50,0 94,57 119,144 26,-87 70,-144 119,-144 52,0 97,62 122,154 25,-92 71,-154 122,-154 79,0 143,144 143,321 0,178 -64,321 -143,321 -51,0 -97,-61 -122,-154 -25,93 -70,154 -122,154 -49,0 -93,-57 -119,-143 -25,86 -69,143 -119,143 -79,0 -142,-143 -142,-321 0,-177 63,-321 142,-321 z"
sodipodi:cx="-137.14285" class="fil3" /><path
id="path807" style="fill:#f5811e"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffe680;stroke-width:10;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" inkscape:connector-curvature="0"
sodipodi:type="arc" /> id="path3049"
<path d="m 4073,6554 c 50,0 94,57 119,144 26,-87 70,-144 119,-144 52,0 97,62 122,154 25,-92 71,-154 122,-154 79,0 143,144 143,321 0,178 -64,321 -143,321 -51,0 -97,-61 -122,-154 -25,93 -70,154 -122,154 -49,0 -93,-57 -119,-143 -25,86 -69,143 -119,143 -78,0 -142,-143 -142,-321 0,-177 64,-321 142,-321 z"
transform="translate(597.14508,-151.4314)" class="fil3" /><path
d="m -708.57142,563.79077 c 0,14.20161 -11.51268,25.71429 -25.71429,25.71429 -14.2016,0 -25.71428,-11.51268 -25.71428,-25.71429 0,-14.20161 11.51268,-25.71428 25.71428,-25.71428 14.20161,0 25.71429,11.51267 25.71429,25.71428 z" style="fill:#f5811e"
sodipodi:ry="25.714285" inkscape:connector-curvature="0"
sodipodi:rx="25.714285" id="path3051"
sodipodi:cy="563.79077" d="m 3848,3741 c 178,-293 299,-581 296,-714 -3,-88 -144,-163 -296,-163 -153,0 -294,75 -296,163 -4,133 117,421 296,714 z"
sodipodi:cx="-734.28571" class="fil3" /><path
id="path809" style="fill:#fefefe"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" inkscape:connector-curvature="0"
sodipodi:type="arc" /> id="path3053"
</g> d="m 4063,5815 c -48,79 -124,148 -221,148 -98,0 -174,-69 -222,-148 -15,-25 -9,-57 15,-75 23,-18 56,-15 76,7 35,37 79,64 131,64 51,0 96,-27 130,-64 20,-22 53,-25 76,-7 24,18 30,50 15,75 z"
</g> class="fil0" /><path
<path style="fill:#fefefe"
sodipodi:type="star" inkscape:connector-curvature="0"
style="fill:#ffeeaa;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:12.38275433;stroke-miterlimit:4;stroke-dasharray:none" id="path3055"
id="path819" d="m 3748,6184 c -48,79 -124,148 -222,148 -97,0 -173,-69 -221,-148 -15,-25 -9,-58 15,-75 23,-18 56,-15 76,6 34,37 79,65 130,65 52,0 96,-28 131,-65 20,-21 53,-24 76,-6 24,17 30,50 15,75 z"
sodipodi:sides="3" class="fil0" /><path
sodipodi:cx="-500" style="fill:#fefefe"
sodipodi:cy="366.64789" inkscape:connector-curvature="0"
sodipodi:r1="57.49889" id="path3057"
sodipodi:r2="28.749445" d="m 4390,6184 c -48,79 -124,148 -221,148 -97,0 -173,-69 -221,-148 -15,-25 -9,-58 14,-75 24,-18 57,-15 77,6 34,37 78,65 130,65 52,0 96,-28 130,-65 20,-21 53,-24 77,-6 23,17 29,50 14,75 z"
sodipodi:arg1="-2.6179939" class="fil0" /><path
sodipodi:arg2="-1.5707963" style="fill:#00b0f5"
inkscape:flatsided="true" inkscape:connector-curvature="0"
inkscape:rounded="1" id="path3059"
inkscape:randomized="0" d="m 3838,863 c 394,0 746,152 981,390 10,10 8,24 -4,33 -12,8 -31,8 -43,-1 -242,-179 -571,-289 -934,-289 -363,0 -692,110 -934,289 -12,9 -31,9 -43,1 -12,-9 -14,-23 -4,-33 235,-238 587,-390 981,-390 z"
d="m -549.7955,337.89844 c 49.7955,-86.24833 49.7955,-86.24833 99.591,0 49.7955,86.24834 49.7955,86.24834 -49.7955,86.24834 -99.591,0 -99.591,0 -49.7955,-86.24834 z" class="fil4" /><path
inkscape:transform-center-y="-4.6434687" style="fill:#00b0f5"
transform="matrix(0.32302991,0,0,-0.32302991,512.37433,618.46685)" /> inkscape:connector-curvature="0"
<path id="path3061"
sodipodi:type="arc" d="m 3838,463 c 517,0 980,199 1289,512 13,13 10,32 -6,43 -16,11 -41,10 -56,-1 -318,-236 -750,-380 -1227,-380 -476,0 -909,144 -1227,380 -15,11 -40,12 -56,1 -16,-11 -19,-30 -6,-43 309,-313 772,-512 1289,-512 z"
style="fill:#decd87;fill-opacity:1;fill-rule:nonzero;stroke:#a0892c;stroke-width:6.81556749;stroke-miterlimit:10;stroke-dasharray:none" class="fil4" /><path
id="path837" style="fill:#00b0f5"
sodipodi:cx="-1.2947719" inkscape:connector-curvature="0"
sodipodi:cy="720.25317" id="path3063"
sodipodi:rx="110.05561" d="m 3838,0 c 669,0 1268,257 1667,662 17,17 14,41 -7,55 -21,14 -53,14 -73,-1 -411,-304 -971,-492 -1587,-492 -616,0 -1176,188 -1587,492 -20,15 -52,15 -73,1 -21,-14 -24,-38 -7,-55 C 2570,257 3169,0 3838,0 z"
sodipodi:ry="165.08342" class="fil4" /><path
d="m 108.76084,720.25317 a 110.05561,165.08342 0 1 1 -220.11122,0 110.05561,165.08342 0 1 1 220.11122,0 z" style="fill:#000000"
transform="matrix(0.87058824,0,0,0.89019609,249.95478,57.075499)" /> inkscape:connector-curvature="0"
<path id="path3065"
transform="matrix(0.87058824,0,0,0.89019609,457.11828,57.075499)" d="m 317,6710 2575,0 c -12,55 -17,111 -17,165 0,49 4,101 14,152 l -2438,0 C 387,6932 341,6825 317,6710 z m 4484,0 2589,0 c -23,115 -69,222 -134,317 l -2452,0 c 10,-51 14,-103 14,-152 0,-54 -5,-110 -17,-165 z"
d="m 108.76084,720.25317 a 110.05561,165.08342 0 1 1 -220.11122,0 110.05561,165.08342 0 1 1 220.11122,0 z" class="fil2" /><path
sodipodi:ry="165.08342" style="fill:#d41e26"
sodipodi:rx="110.05561" inkscape:connector-curvature="0"
sodipodi:cy="720.25317" id="path3067"
sodipodi:cx="-1.2947719" d="m 1175,304 c -481,0 -875,394 -875,875 l 0,5358 c 0,481 394,875 875,875 l 5358,0 c 480,0 875,-394 875,-875 l 0,-5358 c 0,-481 -395,-875 -875,-875 l -974,0 C 5421,187 5269,87 5109,4 l 1424,0 c 646,0 1175,529 1175,1175 l 0,5358 c 0,646 -529,1175 -1175,1175 l -5358,0 C 528,7712 0,7183 0,6537 L 0,1179 C 0,533 528,4 1175,4 l 1392,0 c -160,83 -311,183 -450,300 l -942,0 z"
id="path841" class="fil5" />
style="fill:#decd87;fill-opacity:1;fill-rule:nonzero;stroke:#a0892c;stroke-width:6.81556749;stroke-miterlimit:10;stroke-dasharray:none"
sodipodi:type="arc" />
</g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB