--- gui-apt-key-0.4.orig/GAK/GUI.pm +++ gui-apt-key-0.4/GAK/GUI.pm @@ -242,7 +242,7 @@ sub callback_about { $about = new Gtk2::AboutDialog; - $about->set_name (_('APT Key Manager')); + $about->set_program_name (_('APT Key Manager')); $about->set_website_label ('http://www.infodrom.org/projects/gak/'); $about->set_authors ('Joey Schulze '); $about->set_copyright ('(c) 2006-8 Joey Schulze '); --- gui-apt-key-0.4.orig/debian/menu +++ gui-apt-key-0.4/debian/menu @@ -0,0 +1,6 @@ +?package(gui-apt-key):needs="X11" section="Applications/System/Security"\ + title="APT Key Manager" \ + longtitle="Graphical administration tool for digital keys used with APT" \ + icon="/usr/share/pixmaps/gui-apt-key_32.xpm" \ + command="/usr/bin/su-to-root -X -c /usr/sbin/gak" + --- gui-apt-key-0.4.orig/debian/desktop +++ gui-apt-key-0.4/debian/desktop @@ -0,0 +1,42 @@ +[Desktop Entry] +Version=1.0 +Encoding=UTF-8 +Type=Application +Name=APT Key Manager +Name[bg]=Управление на ключовете на APT +Name[ca]=Gestor de claus d'APT +Name[cs]=Správce klíčů APT +Name[da]=APT Key Manager +Name[de]=APT Schlüsselverwaltung +Name[es]=Gestor de claves de APT +Name[eu]=APT Gako Kudeatzailea +Name[fi]=APT-avainhallinta +Name[fr]=Gestionnaire de clé APT +Name[gl]=Xestor de claves de APT +Name[gu]=APT કી વ્યવસ્થાપક +Name[hu]=APT Kulcs Kezelő +Name[it]=APT Key Manager +Name[ja]=APT キーマネージャ +Name[km]=កម្មវិធី​គ្រប់គ្រង​សោ APT +Name[ko]=APT 키 관리자 +Name[nb]=APT nøkkelstyrer +Name[nl]=APT-Sleutelbeheerder +Name[pl]=Menadżer kluczy APT +Name[pt]=Gestor de Chaves do APT +Name[pt_BR]=Gerenciador de Chaves do APT +Name[ro]=Managerul de chei APT +Name[ru]=Управление ключами APT +Name[sk]=APT správca kľúčov +Name[sv]=Hanterare för APT-nycklar +Name[th]=โปรแกรมจัดการกุญแจ APT +Name[tr]=APT Anahtar Yöneticisi +Name[vi]=Bộ Quản Lý Khoá APT +Name[zh_CN]=APT 密钥管理器 +Comment=Graphical administration tool for digital keys used with APT +Comment[ca]=Eina gràfica d'administració per a claus digitals emprades amb APT +Comment[de]=Graphisches Administrationwerkzeug für digitale Schlüssel von APT +Icon=gui-apt-key +Exec=/usr/bin/su-to-root -X -c /usr/sbin/gak +Terminal=false +StartupNotify=false +Categories=Security;GTK;System; --- gui-apt-key-0.4.orig/debian/rules +++ gui-apt-key-0.4/debian/rules @@ -0,0 +1,99 @@ +#! /usr/bin/make -f + +# Copyright 1994-99,2001,6 Joey Schulze +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 dated June, 1991. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA + +SHELL=/bin/bash + +# The name and version of the source +# +source = $(shell grep "^Source: " debian/control|head -1|sed 's/Source: \(.*\)/\1/g') +package = $(shell grep "^Package: " debian/control|head -1|sed 's/Package: \(.*\)/\1/g') +version = $(shell grep "^$(source) " debian/changelog|head -1 |sed 's/.*(\(.*\)\-[^\-]*).*/\1/g') +revision = $(shell grep "^$(source) " debian/changelog|head -1 |sed 's/.*([^\-]*\-\(.*\)).*/\1/g') + +installbin = install -g root -o root -m 755 +installdoc = install -g root -o root -m 644 + +build: + make -C po + touch stamp-build + +clean: debclean + rm -f stamp-build + $(MAKE) -C po clean + +debclean: +# Cleans debian binary directories to allow binary creation + rm -rf debian/tmp + rm -f debian/{files,substvars} + +binary-indep: +# Nothing to be done here + +binary-arch: debclean + test -f stamp-build || $(MAKE) -f debian/rules build + $(installbin) -d debian/tmp/DEBIAN + chown -R root.root debian/tmp + chmod -R g-ws debian/tmp + $(installbin) -d debian/tmp/usr/share/doc/$(package) + $(installbin) debian/{postinst,postrm} debian/tmp/DEBIAN/ + $(installdoc) debian/changelog debian/tmp/usr/share/doc/$(package)/changelog.Debian + $(installdoc) debian/copyright debian/tmp/usr/share/doc/$(package)/ + gzip -9f debian/tmp/usr/share/doc/$(package)/changelog.Debian + # + $(installdoc) CHANGES debian/tmp/usr/share/doc/$(package)/changelog + gzip -9f debian/tmp/usr/share/doc/$(package)/changelog + # + make prefix=`pwd`/debian/tmp/usr install + gzip -9 debian/tmp/usr/share/man/man?/* + ln -s gak debian/tmp/usr/sbin/gui-apt-key + ln -s gak.8.gz debian/tmp/usr/share/man/man8/gui-apt-key.8.gz + # + $(installbin) -d debian/tmp/usr/share/menu + $(installdoc) debian/menu debian/tmp/usr/share/menu/$(package) + $(installbin) -d debian/tmp/usr/share/applications + $(installdoc) debian/desktop debian/tmp/usr/share/applications/$(package).desktop + $(installbin) -d debian/tmp/usr/share/pixmaps + $(installdoc) debian/gui-apt-key*.xpm debian/tmp/usr/share/pixmaps/ + # + dpkg-gencontrol -isp + dpkg --build debian/tmp .. + +binary: binary-indep binary-arch + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b' or dsc; false + +dsc: + -test -d debian/tmp && $(MAKE) -f debian/rules clean + if [ ! -f ../$(source)_$(version).orig.tar.gz -a -f ../orig/$(source)_$(version).orig.tar.gz ]; \ + then \ + ln -s orig/$(source)_$(version).orig.tar.gz ../$(source)_$(version).orig.tar.gz; \ + touch /tmp/stamp-$(source)-link; \ + fi; \ + cd .. && dpkg-source -b $(source)-$(version) + if [ -f /tmp/stamp-$(source)-link ]; then \ + rm ../$(source)_$(version).orig.tar.gz /tmp/stamp-$(source)-link; \ + fi + +checkroot: + $(checkdir) + test root = "`whoami`" + +dist: binary dsc + +.PHONY: binary binary-arch binary-indep clean checkroot + --- gui-apt-key-0.4.orig/debian/changelog +++ gui-apt-key-0.4/debian/changelog @@ -0,0 +1,102 @@ +gui-apt-key (0.4-2ubuntu1) intrepid; urgency=low + + * applied patch from David Paleino to fix set_name depreciation warning (LP: #270836) + + -- Jim Qode Tue, 16 Sep 2008 13:59:55 +0300 + +gui-apt-key (0.4-2) unstable; urgency=low + + * Remove gksu recommends + * Patch by Jordi Mallach, new Catalan translation and more (closes: Bug#476619) + * Adjusted categories in desktop file + + -- Joey Schulze Mon, 21 Apr 2008 14:37:47 +0200 + +gui-apt-key (0.4-1) unstable; urgency=low + + * New upstream version + . Ask for confirmation after showing the fingerprint before adding new + keys (closes: Bug#394232) + * Move Homepage into its own field + * Add manpage alias for gui-apt-key + * Switch to su-to-root in the desktop file + + -- Martin Schulze Sun, 03 Feb 2008 15:48:53 +0100 + +gui-apt-key (0.3-4) unstable; urgency=low + + * Move program into section Applications/System/Security as requested by + Bill Allombert (closes: Bug#444904) + + -- Martin Schulze Mon, 21 Jan 2008 11:37:41 +0100 + +gui-apt-key (0.3-3) unstable; urgency=low + + * Move the program into the admin subsection + * Adjusted the About dialog + + -- Martin Schulze Thu, 06 Sep 2007 23:44:03 +0200 + +gui-apt-key (0.3-2) unstable; urgency=low + + * Updated Vietnamese translation by Clytie Siddall + * Switch the desktop file to using gksu to become root and recommend it + (Closes: Bug#400710) + + -- Martin Schulze Thu, 7 Dec 2006 16:44:09 +0100 + +gui-apt-key (0.3-1) unstable; urgency=low + + * New upstream release + - Uses stock buttons where possible (closes: Bug#394250) + * Improved menu description + + -- Martin Schulze Tue, 21 Nov 2006 08:36:32 +0100 + +gui-apt-key (0.2-1) unstable; urgency=low + + * New upstream version + - Incorporates new Dutsch translation (closes: Bug#394285, Bug#394995) + - Incorporates new Portuguese translation (closes: Bug#394763) + - Incorporates new Russian translation (closes: Bug#392002) + - Incorporates new Polish translation (closes: Bug#395543, Bug#395544) + * Improved the description (closes: Bug#394229) + * Created an alias from /usr/sbin/gui-apt-key to gak (closes: Bug#394229) + * Added the desktop file provided by Alexander Schmehl (closes: Bug#394251) + * Added translations of the name in the desktop file + * Added the desktop icon provided by Alexander Schmehl, converted to XPM + * Converted the desktop icon into a 32x32 pixel version with 150 colours + + -- Martin Schulze Sun, 5 Nov 2006 11:24:56 +0100 + +gui-apt-key (0.1-4) unstable; urgency=medium + + * New Hungarian translation by Attila SZERVAC + * Updated Spanish translation + * Updated Slovak translation + * Updated French translation + * Updated Basque translation + * Added build dependency to gettext (closes: Bug#391877) + * Updated Swedish translation (closes: Bug#391534) + * Bumped standards version + + -- Martin Schulze Wed, 18 Oct 2006 09:07:55 +0200 + +gui-apt-key (0.1-3) unstable; urgency=low + + * Updated Romanian translation + * Return success for add/update actions + + -- Martin Schulze Fri, 6 Oct 2006 17:42:10 +0200 + +gui-apt-key (0.1-2) unstable; urgency=low + + * Moved /usr/lib/gui-apt-key to /usr/share + + -- Martin Schulze Thu, 5 Oct 2006 20:24:03 +0200 + +gui-apt-key (0.1-1) unstable; urgency=low + + * Initial release + + -- Martin Schulze Thu, 5 Oct 2006 18:53:25 +0200 --- gui-apt-key-0.4.orig/debian/NMU-Disclaimer +++ gui-apt-key-0.4/debian/NMU-Disclaimer @@ -0,0 +1,45 @@ +Non Maintainer Upload of this Package +------------------------------------- + +If you plan to work on an NMU for this package, read the following +closely. It can save you and me some grief. + + 1. At first, contact the maintainer (i.e. send a mail to + joey@debian.org, do not cc or bounce a mail, send a plain mail, + not copied to any mailing list or the BTS) and ask about the + status of the bug you are considering to work on. + + 2. In this mail include all information relevant for this problem, + i.e. include a description of the bug and not only its bug + number. + + 3. If the maintainer is not able or willing to fix the problem or + does not respond within four days, continue with step 4. + + 4. Work on the bug and prepare a patch. Do not upload into the + Debian archive. + + 5. Send the entire patch, together with enough explanations, to the + maintainer for reviewing and ask him for permission of an NMU + using this patch. + + 6. IF AND ONLY IF the maintainer approves the patch (or doesn't + respond within four days), upload the NMU to the incoming + directory and send the patch to the BTS. If the NMU is not + approved, go back to 4. or add the NMU to your homepage, but do + not upload it to the Debian archive. + + 7. Properly sized and well-written patches sent to the BTS are always + appreciated, even if they are rejected later. They demonstrate a + potential solution which could probably improved into a real + solution. + + 8. NEVER change the way a package is maintained in an NMU, i.e. don't + remove dh_* stuff or switch to dh_* respectively. This rule + applies to all NMU's, not only to an NMU for this package. + +These rules always apply. They even apply if somebody declares NMUs +as ok and reduces regular NMU rules to a delay of zero days. Unless +I'm on vacation or on a show I am reachable via mail, so there is +hardly a reason not to contact me. + --- gui-apt-key-0.4.orig/debian/copyright +++ gui-apt-key-0.4/debian/copyright @@ -0,0 +1,31 @@ +This is the Debian GNU/Linux prepackaged version of a graphical +frontend to apt-key. + +This package was put together by Joey Schulze , +from sources obtained from: + http://www.infodrom.org/projects/gui-apt-key/ + +gui-apt-key is released with the following copyright: + + Copyright (c) 2006 Martin Schulze + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The source of the Debian package is managed via CVS. It is publicly +available at or as +<:pserver:anonymous@cvs.infodrom.org/var/cvs/debian/gui-apt-key/>. + --- gui-apt-key-0.4.orig/debian/control +++ gui-apt-key-0.4/debian/control @@ -0,0 +1,20 @@ +Source: gui-apt-key +Section: admin +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Martin Schulze +Build-Depends: gettext +Standards-Version: 3.7.2.0 + +Package: gui-apt-key +Architecture: all +Section: admin +Priority: optional +Depends: libgtk2-perl, liblocale-gettext-perl +Description: Graphical Key Manager for APT + The graphical frontend to the apt-key utility (gak) provides an easy + to use interface to maintain digital keys for APT. They are required + to authenticate Debian archives and prevent malicious packages to + creep in. + . +Homepage: http://www.infodrom.org/projects/gui-apt-key/ --- gui-apt-key-0.4.orig/debian/postrm +++ gui-apt-key-0.4/debian/postrm @@ -0,0 +1,6 @@ +#! /bin/sh + +set -e + +test -x /usr/bin/update-menus && /usr/bin/update-menus || /bin/true +test -x /usr/bin/update-desktop-database && update-desktop-database -q || /bin/true --- gui-apt-key-0.4.orig/debian/gui-apt-key_32.xpm +++ gui-apt-key-0.4/debian/gui-apt-key_32.xpm @@ -0,0 +1,186 @@ +/* XPM */ +static char * gui_apt_key_xpm[] = { +"32 32 151 2", +" c None", +". c #0E100C", +"+ c #21282E", +"@ c #272826", +"# c #451F25", +"$ c #3C3621", +"% c #363737", +"& c #3A3932", +"* c #3D3E3C", +"= c #3D4044", +"- c #484126", +"; c #832624", +"> c #464334", +", c #3A4550", +"' c #374C64", +") c #803131", +"! c #464A4C", +"~ c #3F4E5E", +"{ c #584A51", +"] c #754742", +"^ c #7B4252", +"/ c #923B3B", +"( c #824242", +"_ c #655049", +": c #535A61", +"< c #4F5C6A", +"[ c #695359", +"} c #7F496B", +"| c #605D5F", +"1 c #9A473B", +"2 c #8D523B", +"3 c #5E666F", +"4 c #6E6069", +"5 c #9B5150", +"6 c #706951", +"7 c #686967", +"8 c #706B58", +"9 c #995468", +"0 c #6D6E6B", +"a c #A45D32", +"b c #64707D", +"c c #8F683D", +"d c #82723C", +"e c #6F7275", +"f c #857335", +"g c #73736F", +"h c #6D747C", +"i c #B8574C", +"j c #7F7548", +"k c #AA6B27", +"l c #A66073", +"m c #917B24", +"n c #B06354", +"o c #87717A", +"p c #AE5C86", +"q c #7A7A77", +"r c #8B7372", +"s c #A06D65", +"t c #BE5E6A", +"u c #76808C", +"v c #80827F", +"w c #858274", +"x c #7E8386", +"y c #AE6B89", +"z c #AE6C84", +"A c #8F8461", +"B c #808588", +"C c #AA6E91", +"D c #93874E", +"E c #C0697D", +"F c #A28927", +"G c #858885", +"H c #7E8995", +"I c #998A49", +"J c #A17D79", +"K c #998280", +"L c #968C5E", +"M c #8B8B82", +"N c #928B71", +"O c #AC8066", +"P c #A98F20", +"Q c #9F8F47", +"R c #998688", +"S c #8B8D8A", +"T c #A88278", +"U c #BD7588", +"V c #B19114", +"W c #B57C7E", +"X c #85919E", +"Y c #BB970B", +"Z c #B79A10", +"` c #939592", +" . c #B98491", +".. c #BF8771", +"+. c #A79956", +"@. c #A78F8C", +"#. c #A49960", +"$. c #9098A0", +"%. c #A39773", +"&. c #C7837D", +"*. c #9B978A", +"=. c #BA8888", +"-. c #A2948F", +";. c #A09A86", +">. c #B39D44", +",. c #C08F7C", +"'. c #BDA227", +"). c #C1A31E", +"!. c #BAA337", +"~. c #B3A259", +"{. c #AEA268", +"]. c #99A2AC", +"^. c #C7A818", +"/. c #B3A561", +"(. c #A6A395", +"_. c #AFA37E", +":. c #C9A52D", +"<. c #C7A825", +"[. c #AE9F9A", +"}. c #A4A5A2", +"|. c #B8A85E", +"1. c #C59B8A", +"2. c #BF9C97", +"3. c #C5AD32", +"4. c #A3A8AA", +"5. c #B8AA67", +"6. c #CAAD2A", +"7. c #CFAE22", +"8. c #BF9EA4", +"9. c #C6AE3C", +"0. c #C1AF5F", +"a. c #D3B227", +"b. c #A7AFB7", +"c. c #C7B252", +"d. c #CCB440", +"e. c #CBA899", +"f. c #C1B66D", +"g. c #D4B92D", +"h. c #D3B936", +"i. c #C3ACB9", +"j. c #DAC03D", +"k. c #CFB4A6", +"l. c #C3B5C3", +"m. c #B7BCBF", +"n. c #BABCB9", +"o. c #DFC437", +"p. c #DEC646", +"q. c #E5CC3E", +"r. c #E5D056", +"s. c #CACDCA", +"t. c #ECD861", +" ", +" g q q 7 ", +" g S (.(.}.}.v ", +" 0 w L #.{.{.L (.G ", +" f P :.3.9.c.f.{.N g 7 7 7 7 ", +" F !.h.p.p.r.r.d.|.{.v x G G B G G G G G G v 0 ", +" ^.a.'.V V d.t.t.d.0.A G R ` S S S B S B S S q ", +" Y ^.V m P :.r.t.t.c.L S S ` R $.` r B R u S e ", +" :.^.V f m Z h.r.t.t.9.D q e x S S B g e 0 7 0 ", +"Z ^.7.Y V V :.j.r.t.t.d.I j ", +"Y ^.7.^.^.7.a.a.h.r.t.9.|.|.Q I ", +" Y 7.7.7.7.7.a.h.j.r.!./.5.5.~.I ", +" Y 7.7.7.a.a.a.j.h.:.>./.5./.5.5.+.D ;.g = | ", +" ).7.a.a.h.h.h.j.3.F Q /.f.5.5.5./.D - . @ ! v ", +" Y :.6.:.j.j.j.o.<. I 5.f.5.+.{.5.+.d $ = % r ", +" Y ^.q.o.p.g.~.*.j D D I 5.{./.{.j _ ) ) ", +" ).q.j.o.!.8 * & > j D I /.+.c / / ) ", +" 7.q.p.p.j.Q 7 = % > 6 L L D 2 ( 5 ) ", +" o.q.j.p.:.O K q }.[.S M r / 5 ; ) # ", +" ^.r.p.j.p.k 1 8.` B S S r / ) ] s T s ] ", +" Y V h.o.!.a @.G R ` ` R ( ( ..1.1...,.J ", +" 6.j.j.j.>.4.S $.` @.R ) / n ,.1.,.e.k.K ", +" >.!.h.j.6._.G S H @.r n i i =.i.8.e.e.2. ", +" [.:.p.j.9._.4 e B x 4 &...W 8.o l. .W W ^ ", +" 4.N #.>.{.}.q e 3 3 | g r g 4 | i.y z l ^ ", +" 4.X x M }.].< ~ $.n.n.n.n.n.].4 U y C C ", +" H b b b X ' ' H s.s.s.s.s.X [ t y C } ", +" < h b b H ' ~ H s.s.s.m.m.$.[ E p } ", +" = < b H ~ , X l.m.n.l.n.X { 9 ", +" < 3 + = X ].b.b.4.H H * ", +" u $.h 4.}.< b = ", +" : x e e e ! < % "}; --- gui-apt-key-0.4.orig/debian/postinst +++ gui-apt-key-0.4/debian/postinst @@ -0,0 +1,6 @@ +#! /bin/sh + +set -e + +test -x /usr/bin/update-menus && /usr/bin/update-menus || /bin/true +test -x /usr/bin/update-desktop-database && update-desktop-database -q || /bin/true --- gui-apt-key-0.4.orig/debian/gui-apt-key.xpm +++ gui-apt-key-0.4/debian/gui-apt-key.xpm @@ -0,0 +1,311 @@ +/* XPM */ +static char *gui-apt-key[] = { +/* columns rows colors chars-per-pixel */ +"48 48 257 2", +" c #000000", +". c #0A0408", +"X c #141414", +"o c #1C0B11", +"O c #1E2023", +"+ c #260C19", +"@ c #3B1010", +"# c #2E1520", +"$ c #3B1828", +"% c #252628", +"& c #292E34", +"* c #343638", +"= c #3A3B3B", +"- c #343534", +"; c #392D31", +": c #292514", +"> c #3B3E43", +", c #343B43", +"< c #2A425B", +"1 c #3D4145", +"2 c #354C62", +"3 c #3D5065", +"4 c #42192B", +"5 c #492434", +"6 c #423C38", +"7 c #552A33", +"8 c #6E262A", +"9 c #772727", +"0 c #713135", +"q c #673246", +"w c #532C47", +"e c #444135", +"r c #4E4628", +"t c #724E30", +"y c #766A3C", +"u c #7B6E3B", +"i c #7E7138", +"p c #706433", +"a c #47484A", +"s c #4D535A", +"d c #5C4946", +"f c #5C5C5C", +"g c #555353", +"h c #4F4D51", +"j c #495D72", +"k c #585C60", +"l c #525C65", +"z c #4A5765", +"x c #59626C", +"c c #596776", +"v c #625349", +"b c #605B56", +"n c #775457", +"m c #744B4F", +"M c #745962", +"N c #7F7346", +"B c #78725C", +"V c #676351", +"C c #636363", +"Z c #6B6B6B", +"A c #666767", +"S c #626E7B", +"D c #626B74", +"F c #67727C", +"G c #727272", +"H c #7B7B7B", +"J c #79706D", +"K c #6E7E8C", +"L c #677584", +"P c #727D89", +"I c #73808D", +"U c #798795", +"Y c #91241C", +"T c #983A1A", +"R c #872828", +"E c #8B3636", +"W c #943B3A", +"Q c #9C7F0B", +"! c #857535", +"~ c #88773B", +"^ c #937C23", +"/ c #887635", +"( c #A9403A", +") c #A76B27", +"_ c #874A31", +"` c #924646", +"' c #9A5149", +"] c #9C5757", +"[ c #89554F", +"{ c #9A5564", +"} c #8B526A", +"| c #847445", +" . c #8B6A69", +".. c #927777", +"X. c #8E7471", +"o. c #AC5044", +"O. c #B75465", +"+. c #A94E79", +"@. c #B86752", +"#. c #B36255", +"$. c #AE6579", +"%. c #B57866", +"&. c #B4747A", +"*. c #AC666B", +"=. c #C4776A", +"-. c #996389", +";. c #B45D83", +":. c #AD6A86", +">. c #AF728D", +",. c #B26E99", +"<. c #B37B98", +"1. c #B46F88", +"2. c #B077A2", +"3. c #C47B84", +"4. c #9B811D", +"5. c #9C8C00", +"6. c #9B8835", +"7. c #948133", +"8. c #AD8C0C", +"9. c #A4870C", +"0. c #AB8C12", +"q. c #A38614", +"w. c #B3920E", +"e. c #B29212", +"r. c #BA9A15", +"t. c #BB9C1A", +"y. c #B59718", +"u. c #AF8F0F", +"i. c #AD9125", +"p. c #B69A28", +"a. c #B29C3B", +"s. c #AC8E29", +"d. c #BDA128", +"f. c #BDA432", +"g. c #BEA53A", +"h. c #8E8045", +"j. c #8D8256", +"k. c #938445", +"l. c #988948", +"z. c #958857", +"x. c #9E9156", +"c. c #9F904F", +"v. c #8C8767", +"b. c #858474", +"n. c #968C62", +"m. c #908B77", +"M. c #9B9373", +"N. c #A39554", +"B. c #AA9C5B", +"V. c #A89757", +"C. c #B19C44", +"Z. c #A4954D", +"A. c #BB846D", +"S. c #BB8B77", +"D. c #AC916F", +"F. c #ACA05C", +"G. c #B0A25A", +"H. c #BFAB4D", +"J. c #B3A563", +"K. c #B5A864", +"L. c #BAAC65", +"P. c #B9AC6B", +"I. c #B6A86A", +"U. c #BDB16C", +"Y. c #BEB167", +"T. c #BCB071", +"R. c #AFA472", +"E. c #C09D0F", +"W. c #C2A21B", +"Q. c #CBAA1B", +"!. c #C7A515", +"~. c #CCAC22", +"^. c #C5A727", +"/. c #C4AA35", +"(. c #C1A737", +"). c #CEB02B", +"_. c #CDB132", +"`. c #CCB139", +"'. c #D0B126", +"]. c #D2B42C", +"[. c #D2B633", +"{. c #D5B933", +"}. c #D9BD3B", +"|. c #D5BA36", +" X c #D0AF24", +".X c #C4907F", +"XX c #C1AE55", +"oX c #D6BD42", +"OX c #C4B76C", +"+X c #C4B973", +"@X c #DBC13D", +"#X c #DCC133", +"$X c #E2C93B", +"%X c #EAD23D", +"&X c #DCC342", +"*X c #DFC953", +"=X c #E5CD43", +"-X c #E2CA4B", +";X c #E0C646", +":X c #E3CD53", +">X c #ECD549", +",X c #E9D45B", +"X;X@X=X@Xi.S.wX7Xg A vXMXzXb.b.9X .R *.{ R R 9 @ YXYXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYX8.e.}.>X=X@X@X-X^.) #.jXcXMXrX8X9X8X8X8X .E W R 9 9 0 t 7 4 o . YXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYX8.t.=X>X}.|.;X&Xi.T Y hXwX7X7X9X8X8X0XX.R E 0 m ..hXDXZX%.[ 7 + . YXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYX8.8.0.u.].}.=X_.) Y gXwX7X8X8XwXrXeX..] m t A..XDXFXgXA.S.gXm # YXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXy.t.p.).;X}.&X&Xf.D.hXwX8X8XwXrXeXeX..8 8 W @..XDXDX.XA.ZXFXFXM . ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXy.e.[.@X).@X&X`.C.MXwX8X8XwXrXrX&.b.0 ( W ' %.ZXAX%.A.DXGXHXFX$ . ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXw.4.d.d.d.@X&X&Xd.lXrX8XwXwXwXdX%.X.' @.o.( o.AXHXkXgXFXGXGXGX .# ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYX8.p lXp.@X@X@X&X`.g.8XH 7XG H zXpX .=.=.=.@.O.JXNXJXJXAXAXAXAX*.5 ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX* cX6.&X&X|.|.d.lXA g f 7XwXF j n .X.X.X.XHXkX5 J IX<.1.&.&.{ 5 ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX* bXm.6.a./.p.I.LXf G wXx a * , 6 d v v d f h ; 8XIX>.$.$.$.{ 5 ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX* bXqX0Xb.v.R.NXLXrXF 3 x CXxXxXxXxXxXxXxXxXsXs JXkX:.>.>.>.} 4 ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX* bXqX0XI P U pXnXS < < f aXMXLXJXMXMXLXJXMXU 1 1.O.:.,.2.2.q + ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX- mXU 0Xc D D L yXj < < f sXUXPXPXPXPXPXPXPXI 1 =.O.;.>.2.-.+ ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX. A I U D F c L yXj < < x aXUXPXPXPXPXPXLXLXK > 3.O.;.,.-.w . YX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX % x F D x L yXj 2 2 f aXUXPXPXPXLXMXVXLXK > 3.$.;.} 5 o YXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX % s D c S sXc 2 < f aXUXPXLXLXLXMXHXPXK > 3.+.q $ . YXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX 1 x c iXz & O k aXVXnXnXnXnXnXnXaXK > 4 + . YXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX & z F & . k aXiXyXpXvXbX0XS U K > YXYXYXYXYXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX k aXiXxXl pXcXzXl S K , YXYXYXYXYXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX h 0XiXmXl rXzXzXl S K > YXYXYXYXYXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX % a D H A C f g > , s * YXYXYXYXYXYXYXYX" +};