Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 498682
Collapse All | Expand All

(-)file_not_specified_in_diff (-39 / +1144 lines)
Line  Link Here
0
-- uligo-0.3.orig/uligo.py
0
++ uligo-0.3/uligo.py
Lines 30-36 Link Here
30
import tkFont
30
import tkFont
31
import time
31
import time
32
import pickle
32
import pickle
33
from whrandom import randint
33
from random import randint
34
import os
34
import os
35
import sys
35
import sys
36
from string import split
36
from string import split
Lines 204-210 Link Here
204
        try:
204
        try:
205
            f = open(os.path.join(self.path,self.filename))
205
            f = open(os.path.join(self.path,self.filename))
206
            s = f.readline();
206
            s = f.readline();
207
            if s != 'uligo03\n':            # this is a .dat file from uligo 0.1 or 0.2
207
            if s == 'uligo01\n':            # this is a .dat file from uligo 0.1 or 0.2
208
                f.seek(0)
208
                f.seek(0)
209
                self.noOfPbms, self.pbmsAsked, self.noRight, self.noWrong, self.list = pickle.load(f)
209
                self.noOfPbms, self.pbmsAsked, self.noRight, self.noWrong, self.list = pickle.load(f)
210
                f.close()
210
                f.close()
Lines 921-934 Link Here
921
        """ Save statistics and name of current database and exit the program. """
921
        """ Save statistics and name of current database and exit the program. """
922
        if self.pbmRec: self.pbmRec.saveToDisk()
922
        if self.pbmRec: self.pbmRec.saveToDisk()
923
923
924
        filename = os.path.join(self.optionspath, 'uligo.def')
924
        try:
925
        try:
925
            f = open(os.path.join(self.optionspath,'uligo.def'),'w')
926
            f = open(os.path.join(filename),'w')
926
            f.write('uligo03\n')
927
            f.write('uligo03\n')
927
            f.write('s '+self.sgfpath+'\n')
928
            f.write('s '+self.sgfpath+'\n')
928
            if self.currentFile: f.write('f '+self.currentFile +'\n')
929
            if self.currentFile: f.write('f '+self.currentFile +'\n')
929
            f.close()
930
            f.close()
930
        except IOError:
931
        except IOError:
931
            showwarning('IOError', 'Could not write uligo.def')
932
            showwarning('IOError', 'Could not write %s' % filename)
932
933
933
        self.saveOptions()
934
        self.saveOptions()
934
        self.frame.quit()
935
        self.frame.quit()
Lines 1475-1504 Link Here
1475
1476
1476
    def helpLicense(self):
1477
    def helpLicense(self):
1477
        """ Display the GNU General Public License. """
1478
        """ Display the GNU General Public License. """
1478
        try:
1479
        t = 'uliGo was written by Ulrich Goertz (u@g0ertz.de).\n' 
1479
            t = 'uliGo was written by Ulrich Goertz (u@g0ertz.de).\n' 
1480
        t += 'It is published under the GNU General Public License (see below). ' 
1480
            t = t + 'It is published under the GNU General Public License (see below). ' 
1481
        t += 'In particular you may freely distribute it if you do not change the ' 
1481
            t = t + 'In particular you may freely distribute it if you do not change the ' 
1482
        t += 'copyright notices and include all the files that belong to uliGo.\n' 
1482
            t = t + 'copyright notices and include all the files that belong to uliGo.\n' 
1483
        t += 'This program is distributed WITHOUT ANY WARRANTY!\n\n'
1483
            t = t + 'This program is distributed WITHOUT ANY WARRANTY!\n\n'
1484
        gpldeb = os.path.join('/usr', 'share', 'common-licenses', 'GPL')
1484
            t = t + '------------------------------------------------------------------------\n\n'
1485
        gpluli = os.path.join(self.uligopath, 'doc', 'license.txt')
1485
            file = open(os.path.join(self.uligopath, 'doc','license.txt'))
1486
        if os.path.exists(gpldeb): file = open(gpldeb)
1487
        elif os.path.exists(gpluli): file = open(gpluli)
1488
        else: file = None
1489
        if file:
1490
            t += '------------------------------------------------------------------------\n\n'
1486
            t = t + file.read()
1491
            t = t + file.read()
1487
            file.close()
1492
            file.close()
1488
        except IOError:
1489
            t = 'uliGo was written by Ulrich Goertz (u@g0ertz.de).\n' 
1490
            t = t + 'uliGo is published under the GNU General Public License. ' 
1491
            t = t + 'See the file gpl.txt for more information. ' 
1492
            t = t + 'The GPL is also available at http://www.gnu.org/copyleft/gpl.html\n'
1493
            t = t + 'This program is distributed WITHOUT ANY WARRANTY!\n\n'
1494
        self.textWindow(t,'uliGo license')
1493
        self.textWindow(t,'uliGo license')
1495
1494
1496
1495
1497
    def helpDoc(self):
1496
    def helpDoc(self):
1498
        """ Display the documentation. """
1497
        """ Display the documentation. """
1499
        
1498
        docdeb = os.path.join('/usr', 'share', 'doc', 'uligo', 'manual.html')
1500
        webbrowser.open('file:'+os.path.abspath(os.path.join(sys.path[0], 'doc', 'manual.html')), new=1)
1499
        doculi = os.path.join(self.uligopath, 'manual.html')
1501
1500
        if os.path.exists(docdeb): webbrowser.open('file:'+docdeb, new=1)
1501
        elif os.path.exists(doculi): webbrowser.open('file:'+doculi, new=1)
1502
        else:
1503
            showwarning('Manual not found',
1504
                        "The uliGo manual could not be found at %s or %s. Please check your uliGo installation." % (docdeb, doculi))
1502
1505
1503
    def textWindow(self, t, title='', grab=1):
1506
    def textWindow(self, t, title='', grab=1):
1504
        """ Open a window and display the text in the string t.
1507
        """ Open a window and display the text in the string t.
Lines 1775-1781 Link Here
1775
        self.statisticsWindow.withdraw()
1778
        self.statisticsWindow.withdraw()
1776
        self.statisticsWindow.title('Statistics')
1779
        self.statisticsWindow.title('Statistics')
1777
        self.statisticsText = StringVar()
1780
        self.statisticsText = StringVar()
1778
        Label(self.statisticsWindow, height=10, width=50, justify=LEFT, font = ('Courier', 11),
1781
        Label(self.statisticsWindow, height=10, width=50, justify=LEFT, font = ('Courier', 12),
1779
               textvariable=self.statisticsText).pack()
1782
               textvariable=self.statisticsText).pack()
1780
        self.statisticsWindow.protocol('WM_DELETE_WINDOW', self.statisticsWindow.withdraw)        
1783
        self.statisticsWindow.protocol('WM_DELETE_WINDOW', self.statisticsWindow.withdraw)        
1781
1784
1782
-- uligo-0.3.orig/board1.py
1785
++ uligo-0.3/board1.py
Lines 24-30 Link Here
24
24
25
25
26
from Tkinter import *
26
from Tkinter import *
27
from whrandom import randint
27
from random import randint
28
import math
28
import math
29
import sys
29
import sys
30
import os
30
import os
Lines 236-243 Link Here
236
236
237
        if PILinstalled:
237
        if PILinstalled:
238
            try:
238
            try:
239
                self.blackStone = Image.open(os.path.join(gifpath, 'black.gif'))
239
                self.blackStone = Image.open(os.path.join(gifpath, 'black.gif')).convert('RGBA')
240
                self.whiteStone = Image.open(os.path.join(gifpath, 'white.gif'))
240
                self.whiteStone = Image.open(os.path.join(gifpath, 'white.gif')).convert('RGBA')
241
            except IOError:
241
            except IOError:
242
                PILinstalled = 0
242
                PILinstalled = 0
243
243
244
-- uligo-0.3.orig/debian/docs
244
++ uligo-0.3/debian/docs
Line 0 Link Here
0
-- uligo-0.3.orig/debian/menu
1
doc/*.gif
2
doc/manual.html
3
doc/readme.txt
4
++ uligo-0.3/debian/menu
Line 0 Link Here
0
-- uligo-0.3.orig/debian/uligo.6
1
?package(uligo):needs="X11" section="Games/Board"\
2
 icon="/usr/share/pixmaps/uligo-debian.xpm" title="uliGo"\
3
 command="/usr/games/uligo"
4
++ uligo-0.3/debian/uligo.6
Line 0 Link Here
0
-- uligo-0.3.orig/debian/control
1
.TH uligo 6 "April 25th, 2003"
2
.SH NAME
3
uligo \- tsumego (go problems) practice tool
4
.SH SYNOPSIS
5
\fBuligo\fR
6
.SH DESCRIPTION
7
To get stronger at go, it is essential to develop one's reading ability. That
8
is why professionals recommend to study life and death or tesuji problems.
9
uliGo is a program that allows you to do that: basically, the computer
10
displays a problem, and asks for the answer. You enter the first move, the
11
computer responds, and so on until you reach the final solution or enter a
12
wrong move.
13
.SH USAGE
14
The basic operation of uliGo is simple. Click the right arrow to
15
view a problem, and then click where you think the right answer is.
16
The Documentation item in the Help menu contains the full documentation
17
for uliGo, such as configuring the timer or the order the tsumego are
18
displayed in.
19
.PP
20
By default, problems are presented in random order, with the colors and
21
orientation of the problem randomly chosen.
22
.SH FILES
23
.IP ~/.uligo
24
This directory stores information about how many problems you've solved,
25
and SGF files you've downloaded yourself.
26
.SH AUTHOR
27
Ulrich Goertz <uligo@g0ertz.de> is the author of uliGo. Joe Wreschnig
28
<piman@debian.org> wrote this manual page for the Debian operating
29
system, but it may be used by others.
30
.SH SEE ALSO
31
The uliGo website at http://www.u-go.net/uligo/ contains more (unclearly
32
licensed) problems sets that cannot be included with the Debian package.
33
++ uligo-0.3/debian/control
Line 0 Link Here
0
-- uligo-0.3.orig/debian/changelog
1
Source: uligo
2
Section: games
3
Priority: optional
4
Maintainer: David Andel <andel@ailab.ch>
5
Build-Depends-Indep: python, sharutils
6
Build-Depends: debhelper (>= 4.1.25)
7
Standards-Version: 3.7.3
8
9
Package: uligo
10
Architecture: all
11
Depends: python, python-tk
12
Suggests: python-imaging-tk, cgoban
13
Description: tsumego (go problems) practice tool
14
 To get stronger at the game of go, it is essential to develop one's
15
 reading ability. That is why professionals recommend study of life and
16
 death or tesuji (local offensive positions) problems. uliGo is a program
17
 that allows you to do that: the computer displays a problem, and asks for
18
 the answer. You enter the first move, the computer responds, and so on
19
 until you reach the final solution or enter a wrong move.
20
 .
21
 uliGo includes a stop clock, support for multiple solution paths, and
22
 random color selection and board rotation (to avoid rote memorization).
23
 It uses the standard SGF format for its problems, so you can easily
24
 create your own using any SGF editor (such as CGoban).
25
++ uligo-0.3/debian/changelog
Line 0 Link Here
0
-- uligo-0.3.orig/debian/uligo-debian.xpm
1
uligo (0.3-6) unstable; urgency=low
2
3
  * uligo.py: font size in statistics increased 
4
  * uligo.py, board1.py: use module random instead of whrandom which is
5
    deprecated and not in python2.5 (Patch from Ubuntu incorporated. Closes:
6
    #457881) 
7
  * New maintainer. Closes: #388362
8
  * Conforms with latest Standards Version 3.7.3
9
10
 -- David Andel <andel@ailab.ch>  Mon, 31 Dec 2007 13:46:10 +0100
11
12
uligo (0.3-5) unstable; urgency=low
13
14
  * QA upload.
15
  * Set maintainer to QA Group; Orphaned: #388362
16
  * Move debhelper from B-D-I to B-D
17
  * Add missing quotes to debian/menu (and rebuild
18
    finally moves the menu file to from /usr/lib
19
    to /usr/share)
20
  * Conforms with latest Standards Version 3.7.2
21
22
 -- Michael Ablassmeier <abi@debian.org>  Wed,  4 Oct 2006 10:20:17 +0200
23
24
uligo (0.3-4) unstable; urgency=low
25
26
  * Suggest python-imaging-tk.
27
  * convert('RGBA') transparent images. (Closes: #212159) (thanks, mu)
28
29
 -- Joe Wreschnig <piman@debian.org>  Sun, 23 May 2004 12:01:27 -0500
30
31
uligo (0.3-3) unstable; urgency=low
32
33
  * Build-Depend on sharutils for uudecode. (Closes: #213945)
34
  * Update S-V to 3.6.1.
35
36
 -- Joe Wreschnig <piman@debian.org>  Sat, 04 Oct 2003 04:01:21 -0500
37
38
uligo (0.3-2) unstable; urgency=low
39
40
  * Include an icon (Closes: #202261).
41
  * Parse files generated by uliGo 0.2 correctly. (Closes: #208682)
42
43
 -- Joe Wreschnig <piman@debian.org>  Sat, 13 Sep 2003 16:50:19 -0500
44
45
uligo (0.3-1) unstable; urgency=low
46
47
  * New upstream version. (Closes: #207429)
48
  * Remove notes about (no longer included) Sgflib from copyright file.
49
50
 -- Joe Wreschnig <piman@debian.org>  Tue, 02 Sep 2003 14:30:36 -0500
51
52
uligo (0.2-3) unstable; urgency=low
53
54
  * Remove call to dh_python so modules are not byte-compiled.
55
  * Standards-Version 3.6.0.
56
57
 -- Joe Wreschnig <piman@debian.org>  Mon, 25 Aug 2003 23:58:31 -0500
58
59
uligo (0.2-2) unstable; urgency=low
60
61
  * Update manual page with information on problem sets.
62
  * Remove the uligo-data-nonfree reference in suggests.
63
  * Build-Depend on Python. (Closes: #190716)
64
65
 -- Joe Wreschnig <piman@debian.org>  Fri, 25 Apr 2003 10:46:53 -0500
66
67
uligo (0.2-1) unstable; urgency=low
68
69
  * Initial upload. (Closes: #181295)
70
71
 -- Joe Wreschnig <piman@debian.org>  Sun, 16 Feb 2003 03:38:17 -0600
72
++ uligo-0.3/debian/uligo-debian.xpm
Line 0 Link Here
0
-- uligo-0.3.orig/debian/uligo.png.uu
1
/* XPM */
2
static char * uligo_debian_xpm[] = {
3
"32 32 578 2",
4
"  	c #A15E2B",
5
". 	c #A05E2A",
6
"+ 	c #703C1C",
7
"@ 	c #A55E2A",
8
"# 	c #9E5A29",
9
"$ 	c #945327",
10
"% 	c #65371B",
11
"& 	c #8A4E26",
12
"* 	c #7E4726",
13
"= 	c #764224",
14
"- 	c #5B331C",
15
"; 	c #7C4726",
16
"> 	c #804A27",
17
", 	c #7E4825",
18
"' 	c #63361C",
19
") 	c #975628",
20
"! 	c #9D5928",
21
"~ 	c #6C3C1D",
22
"{ 	c #9F5C2A",
23
"] 	c #9A5828",
24
"^ 	c #9C5827",
25
"/ 	c #703D1C",
26
"( 	c #9A5928",
27
"_ 	c #703E1E",
28
": 	c #9F5928",
29
"< 	c #68391C",
30
"[ 	c #8E5026",
31
"} 	c #8A4E27",
32
"| 	c #8B5028",
33
"1 	c #6E3A1C",
34
"2 	c #985528",
35
"3 	c #925026",
36
"4 	c #8B4C25",
37
"5 	c #61371C",
38
"6 	c #8C5228",
39
"7 	c #915228",
40
"8 	c #8F5027",
41
"9 	c #66381C",
42
"0 	c #905126",
43
"a 	c #905228",
44
"b 	c #925127",
45
"c 	c #64361C",
46
"d 	c #8C4E26",
47
"e 	c #935227",
48
"f 	c #985427",
49
"g 	c #66361B",
50
"h 	c #8E5128",
51
"i 	c #804825",
52
"j 	c #64361B",
53
"k 	c #7F4624",
54
"l 	c #854C26",
55
"m 	c #69391C",
56
"n 	c #945428",
57
"o 	c #65361A",
58
"p 	c #AE652C",
59
"q 	c #AC642C",
60
"r 	c #703E1D",
61
"s 	c #A8602B",
62
"t 	c #AB602A",
63
"u 	c #A65F2A",
64
"v 	c #6D3B1C",
65
"w 	c #935428",
66
"x 	c #A05D2B",
67
"y 	c #A05B29",
68
"z 	c #753F1C",
69
"A 	c #A7602C",
70
"B 	c #9A5829",
71
"C 	c #9F5A29",
72
"D 	c #743D1B",
73
"E 	c #A05828",
74
"F 	c #9E5627",
75
"G 	c #A65E29",
76
"H 	c #703C1D",
77
"I 	c #A55D2A",
78
"J 	c #AB622C",
79
"K 	c #AD642C",
80
"L 	c #723D1D",
81
"M 	c #AB662D",
82
"N 	c #713F1D",
83
"O 	c #A25C2A",
84
"P 	c #743F1C",
85
"Q 	c #9A5628",
86
"R 	c #74401E",
87
"S 	c #75411F",
88
"T 	c #5C3116",
89
"U 	c #7C441D",
90
"V 	c #79421E",
91
"W 	c #764421",
92
"X 	c #5A3017",
93
"Y 	c #764320",
94
"Z 	c #7A441F",
95
"` 	c #7D4420",
96
" .	c #5D3318",
97
"..	c #7E4720",
98
"+.	c #7D461E",
99
"@.	c #7A411D",
100
"#.	c #562E16",
101
"$.	c #713F1E",
102
"%.	c #78421E",
103
"&.	c #80451D",
104
"*.	c #673314",
105
"=.	c #78401B",
106
"-.	c #79421D",
107
";.	c #76401E",
108
">.	c #5B3016",
109
",.	c #6A391B",
110
"'.	c #723F1E",
111
").	c #5B3118",
112
"!.	c #77421E",
113
"~.	c #5E3318",
114
"{.	c #74411F",
115
"].	c #925228",
116
"^.	c #A65E2A",
117
"/.	c #B1662C",
118
"(.	c #B4662C",
119
"_.	c #7C431E",
120
":.	c #B7692C",
121
"<.	c #AD6029",
122
"[.	c #B0622C",
123
"}.	c #B3662F",
124
"|.	c #B0642C",
125
"1.	c #78421D",
126
"2.	c #A65D2A",
127
"3.	c #AB6029",
128
"4.	c #A45B28",
129
"5.	c #62361C",
130
"6.	c #965226",
131
"7.	c #773C19",
132
"8.	c #8B4A24",
133
"9.	c #894C26",
134
"0.	c #743C1A",
135
"a.	c #9E5727",
136
"b.	c #80451E",
137
"c.	c #B5672D",
138
"d.	c #9D5829",
139
"e.	c #A15626",
140
"f.	c #7C421C",
141
"g.	c #B3642B",
142
"h.	c #B6672B",
143
"i.	c #BC7030",
144
"j.	c #7C4620",
145
"k.	c #B2662D",
146
"l.	c #9C5828",
147
"m.	c #B1692E",
148
"n.	c #7B4822",
149
"o.	c #BB6E30",
150
"p.	c #BA6D32",
151
"q.	c #B66F31",
152
"r.	c #6F3E1C",
153
"s.	c #8C4F27",
154
"t.	c #814724",
155
"u.	c #7C4222",
156
"v.	c #67371B",
157
"w.	c #9D5627",
158
"x.	c #804624",
159
"y.	c #6C3718",
160
"z.	c #824724",
161
"A.	c #935328",
162
"B.	c #783E1B",
163
"C.	c #AA5D28",
164
"D.	c #7E4821",
165
"E.	c #BA6C2D",
166
"F.	c #8E4E26",
167
"G.	c #945126",
168
"H.	c #763F1B",
169
"I.	c #AA5E2A",
170
"J.	c #AC622B",
171
"K.	c #AE622A",
172
"L.	c #BA6E2E",
173
"M.	c #B86D2F",
174
"N.	c #AF662D",
175
"O.	c #75441F",
176
"P.	c #AE692E",
177
"Q.	c #B16C2F",
178
"R.	c #A25F2C",
179
"S.	c #9B5828",
180
"T.	c #9E5928",
181
"U.	c #AC5F29",
182
"V.	c #78401D",
183
"W.	c #A15828",
184
"X.	c #874D26",
185
"Y.	c #7C4323",
186
"Z.	c #593019",
187
"`.	c #763F22",
188
" +	c #6E3A1B",
189
".+	c #9D5727",
190
"++	c #7D431C",
191
"@+	c #B6692D",
192
"#+	c #693B1C",
193
"$+	c #5F331B",
194
"%+	c #5A2F16",
195
"&+	c #7A461E",
196
"*+	c #79441E",
197
"=+	c #5B3117",
198
"-+	c #7A461F",
199
";+	c #643618",
200
">+	c #804821",
201
",+	c #7E4B22",
202
"'+	c #75411E",
203
")+	c #5A3117",
204
"!+	c #724521",
205
"~+	c #74401C",
206
"{+	c #7C411C",
207
"]+	c #7C411D",
208
"^+	c #7A421E",
209
"/+	c #613216",
210
"(+	c #76411F",
211
"_+	c #74401F",
212
":+	c #502915",
213
"<+	c #5D3217",
214
"[+	c #764520",
215
"}+	c #703F1D",
216
"|+	c #5E3116",
217
"1+	c #7D461F",
218
"2+	c #7D4820",
219
"3+	c #7D451E",
220
"4+	c #5E3218",
221
"5+	c #72401E",
222
"6+	c #74421E",
223
"7+	c #5E3619",
224
"8+	c #7C4922",
225
"9+	c #75421E",
226
"0+	c #603417",
227
"a+	c #7C4920",
228
"b+	c #703D1B",
229
"c+	c #5F3116",
230
"d+	c #76401D",
231
"e+	c #7B431E",
232
"f+	c #7C441F",
233
"g+	c #673617",
234
"h+	c #7E441E",
235
"i+	c #542C16",
236
"j+	c #6F3B1C",
237
"k+	c #613317",
238
"l+	c #7A4620",
239
"m+	c #B26C2F",
240
"n+	c #B0662C",
241
"o+	c #74411E",
242
"p+	c #AE642C",
243
"q+	c #B2672D",
244
"r+	c #AA622A",
245
"s+	c #6E3C1D",
246
"t+	c #502D14",
247
"u+	c #A95E2B",
248
"v+	c #6D3E1E",
249
"w+	c #7F4A20",
250
"x+	c #5C3818",
251
"y+	c #A75E2A",
252
"z+	c #865324",
253
"A+	c #5C3A19",
254
"B+	c #A9652D",
255
"C+	c #76421E",
256
"D+	c #5D3819",
257
"E+	c #B67232",
258
"F+	c #7A4821",
259
"G+	c #885224",
260
"H+	c #5B3719",
261
"I+	c #A9622C",
262
"J+	c #70401E",
263
"K+	c #A85E2A",
264
"L+	c #B0682E",
265
"M+	c #B26C31",
266
"N+	c #AC612C",
267
"O+	c #AB642C",
268
"P+	c #A15C29",
269
"Q+	c #743E1D",
270
"R+	c #0F0F0F",
271
"S+	c #000000",
272
"T+	c #512C14",
273
"U+	c #552F15",
274
"V+	c #723E1C",
275
"W+	c #533015",
276
"X+	c #7C441E",
277
"Y+	c #5E3C1A",
278
"Z+	c #824D22",
279
"`+	c #563316",
280
" @	c #7C4720",
281
".@	c #713E1D",
282
"+@	c #B46A2D",
283
"@@	c #BB7132",
284
"#@	c #784420",
285
"$@	c #B0652C",
286
"%@	c #B4672E",
287
"&@	c #7D431E",
288
"*@	c #29170A",
289
"=@	c #0A0A0A",
290
"-@	c #7E461F",
291
";@	c #6E3E1D",
292
">@	c #28180B",
293
",@	c #733F1D",
294
"'@	c #723D1C",
295
")@	c #26150A",
296
"!@	c #824B20",
297
"~@	c #834A20",
298
"{@	c #2E1C0D",
299
"]@	c #8C5323",
300
"^@	c #865124",
301
"/@	c #2E1B0B",
302
"(@	c #864E22",
303
"_@	c #7E4A21",
304
":@	c #B66B2E",
305
"<@	c #B0622B",
306
"[@	c #814A20",
307
"}@	c #875022",
308
"|@	c #683819",
309
"1@	c #844C20",
310
"2@	c #864A20",
311
"3@	c #874A1D",
312
"4@	c #673616",
313
"5@	c #7A421D",
314
"6@	c #79401C",
315
"7@	c #623316",
316
"8@	c #77401C",
317
"9@	c #7B451E",
318
"0@	c #79451E",
319
"a@	c #623416",
320
"b@	c #743E1C",
321
"c@	c #6F3919",
322
"d@	c #703A1A",
323
"e@	c #683414",
324
"f@	c #7B401C",
325
"g@	c #79411B",
326
"h@	c #7E431C",
327
"i@	c #6E3A16",
328
"j@	c #82481D",
329
"k@	c #81461E",
330
"l@	c #6A3B1A",
331
"m@	c #854E22",
332
"n@	c #80461D",
333
"o@	c #9F5C29",
334
"p@	c #9C5A2A",
335
"q@	c #6E3B1B",
336
"r@	c #5E341B",
337
"s@	c #422512",
338
"t@	c #844A26",
339
"u@	c #69381A",
340
"v@	c #91654A",
341
"w@	c #A5846E",
342
"x@	c #965024",
343
"y@	c #76401C",
344
"z@	c #A6704C",
345
"A@	c #AD8970",
346
"B@	c #9F5626",
347
"C@	c #723B1A",
348
"D@	c #9C6849",
349
"E@	c #A2826E",
350
"F@	c #844925",
351
"G@	c #8D644A",
352
"H@	c #9E8270",
353
"I@	c #834925",
354
"J@	c #6C391A",
355
"K@	c #9E6D4C",
356
"L@	c #AD8C72",
357
"M@	c #79411C",
358
"N@	c #653A1E",
359
"O@	c #391F11",
360
"P@	c #854B26",
361
"Q@	c #6B381A",
362
"R@	c #804725",
363
"S@	c #A15E2C",
364
"T@	c #905428",
365
"U@	c #6D391A",
366
"V@	c #422714",
367
"W@	c #713C1A",
368
"X@	c #C9C9C9",
369
"Y@	c #B7B7B7",
370
"Z@	c #A6856F",
371
"`@	c #74401D",
372
" #	c #AA8970",
373
".#	c #AF896F",
374
"+#	c #7E461E",
375
"@#	c #B18D71",
376
"##	c #A98870",
377
"$#	c #3E2413",
378
"%#	c #713E1A",
379
"&#	c #844C27",
380
"*#	c #B86E30",
381
"=#	c #BB7030",
382
"-#	c #834E23",
383
";#	c #301E0D",
384
">#	c #8A5426",
385
",#	c #844A1F",
386
"'#	c #B7A394",
387
")#	c #AA724C",
388
"!#	c #6A3A1C",
389
"~#	c #B09E92",
390
"{#	c #A2704C",
391
"]#	c #B1A094",
392
"^#	c #AC744C",
393
"/#	c #B6A394",
394
"(#	c #B2784E",
395
"_#	c #B8A796",
396
":#	c #B77E50",
397
"<#	c #844C21",
398
"[#	c #30200E",
399
"}#	c #8A5324",
400
"|#	c #824A21",
401
"1#	c #B96E2F",
402
"2#	c #7B4620",
403
"3#	c #7E4920",
404
"4#	c #683A19",
405
"5#	c #804C20",
406
"6#	c #77441F",
407
"7#	c #76411D",
408
"8#	c #643617",
409
"9#	c #7B441E",
410
"0#	c #5E3016",
411
"a#	c #77401D",
412
"b#	c #6A391C",
413
"c#	c #5D3319",
414
"d#	c #7C4821",
415
"e#	c #7E471F",
416
"f#	c #5E3317",
417
"g#	c #7D441E",
418
"h#	c #653818",
419
"i#	c #834E22",
420
"j#	c #5E3217",
421
"k#	c #7E471E",
422
"l#	c #B67132",
423
"m#	c #B97332",
424
"n#	c #7B4A22",
425
"o#	c #895625",
426
"p#	c #76441E",
427
"q#	c #AC7A4F",
428
"r#	c #B28E72",
429
"s#	c #B87232",
430
"t#	c #72401D",
431
"u#	c #7D4921",
432
"v#	c #543015",
433
"w#	c #AA602B",
434
"x#	c #7E4A20",
435
"y#	c #573015",
436
"z#	c #A95E29",
437
"A#	c #583416",
438
"B#	c #A9602B",
439
"C#	c #B07A50",
440
"D#	c #B39073",
441
"E#	c #7A4A22",
442
"F#	c #8B5827",
443
"G#	c #5D3A1A",
444
"H#	c #B67231",
445
"I#	c #78451F",
446
"J#	c #AA652C",
447
"K#	c #A65E2B",
448
"L#	c #7B421C",
449
"M#	c #512F15",
450
"N#	c #B08E72",
451
"O#	c #7C4820",
452
"P#	c #5C3718",
453
"Q#	c #593417",
454
"R#	c #77431E",
455
"S#	c #77411E",
456
"T#	c #AE8B71",
457
"U#	c #7C421D",
458
"V#	c #563216",
459
"W#	c #9E5B29",
460
"X#	c #7D4424",
461
"Y#	c #774022",
462
"Z#	c #562D19",
463
"`#	c #1A0D08",
464
" $	c #B6A294",
465
".$	c #9F6E4C",
466
"+$	c #241409",
467
"@$	c #855123",
468
"#$	c #76431F",
469
"$$	c #28160A",
470
"%$	c #8C5424",
471
"&$	c #78411C",
472
"*$	c #2C190B",
473
"=$	c #804820",
474
"-$	c #8E6249",
475
";$	c #592F19",
476
">$	c #1E1008",
477
",$	c #66391D",
478
"'$	c #B1622A",
479
")$	c #793E1A",
480
"!$	c #753E1B",
481
"~$	c #602F12",
482
"{$	c #623117",
483
"]$	c #603219",
484
"^$	c #69381B",
485
"/$	c #522C16",
486
"($	c #64381C",
487
"_$	c #5E331A",
488
":$	c #63371C",
489
"<$	c #552E17",
490
"[$	c #774420",
491
"}$	c #7C4A22",
492
"|$	c #7D4E24",
493
"1$	c #5B351A",
494
"2$	c #6C3A1C",
495
"3$	c #5B3218",
496
"4$	c #7F471F",
497
"5$	c #80441D",
498
"6$	c #80421C",
499
"7$	c #663415",
500
"8$	c #793D1A",
501
"9$	c #7A401C",
502
"0$	c #663314",
503
"a$	c #683518",
504
"b$	c #552C16",
505
"c$	c #874B25",
506
"d$	c #8B4B24",
507
"e$	c #452612",
508
"f$	c #904F26",
509
"g$	c #A36E4B",
510
"h$	c #AF8970",
511
"i$	c #AB612C",
512
"j$	c #A9612C",
513
"k$	c #AA612C",
514
"l$	c #A45C2B",
515
"m$	c #A6724D",
516
"n$	c #AE8A70",
517
"o$	c #B7682D",
518
"p$	c #7F441E",
519
"q$	c #B7692D",
520
"r$	c #B0632C",
521
"s$	c #723C1B",
522
"t$	c #A4714D",
523
"u$	c #A0826E",
524
"v$	c #6E3819",
525
"w$	c #723E1D",
526
"x$	c #4E2A13",
527
"y$	c #8E4F26",
528
"z$	c #65361B",
529
"A$	c #965327",
530
"B$	c #77411C",
531
"C$	c #502E14",
532
"D$	c #7C401B",
533
"E$	c #B08D71",
534
"F$	c #B2652C",
535
"G$	c #B76A2E",
536
"H$	c #BA6D2F",
537
"I$	c #7D451F",
538
"J$	c #B79073",
539
"K$	c #A45E2A",
540
"L$	c #B4662A",
541
"M$	c #B18C70",
542
"N$	c #6B3A1C",
543
"O$	c #512E15",
544
"P$	c #763F1C",
545
"Q$	c #A45A28",
546
"R$	c #AF672E",
547
"S$	c #AD662E",
548
"T$	c #77401E",
549
"U$	c #2B180B",
550
"V$	c #B2A094",
551
"W$	c #A36D4A",
552
"X$	c #753D1C",
553
"Y$	c #A05A29",
554
"Z$	c #A05C2C",
555
"`$	c #A45D2A",
556
" %	c #AE9E93",
557
".%	c #A16F4C",
558
"+%	c #A35D2A",
559
"@%	c #A8622B",
560
"#%	c #744220",
561
"$%	c #2A180A",
562
"%%	c #7F4922",
563
"&%	c #63361B",
564
"*%	c #62331A",
565
"=%	c #64361A",
566
"-%	c #532A14",
567
";%	c #6A381B",
568
">%	c #4C2714",
569
",%	c #683A1E",
570
"'%	c #512B17",
571
")%	c #68381C",
572
"!%	c #6A3C1E",
573
"~%	c #522E18",
574
"{%	c #66391C",
575
"]%	c #64371C",
576
"^%	c #66391E",
577
"/%	c #572E16",
578
"(%	c #67371A",
579
"_%	c #522A15",
580
":%	c #64351A",
581
"<%	c #522B15",
582
"  . + @ # $ % & * = - ; > , ' & ) ! ~ { ] ^ / ( )   _ : @ # < [ ",
583
"} | 1 2 3 4 5 6 7 8 9 0 a b c d e f g h & i j k l } m n 2 3 o | ",
584
"p q r s t u v w x y z A B C D E F G H I J K L u M p N O s t P Q ",
585
"R S T U V W X Y Z `  ...+.@.#.$.%.&.*.=.-.;.>.,.'.R ).!.U V ~.{.",
586
"].2 D ^./.(._.:.<.u %.[.}.|.1.2.3.4.5.3 n 6.7.8.9.].0.a.^./.b.c.",
587
"d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.3 x.y.z.A.d.B.C.g.h.D.E.",
588
"F.G.H.I.J.K.+.L.M.N.O.P.Q.R.9 S.T.U.V.W.X.Y.Z.`.t.F. +.+I.J.++@+",
589
"#+$+%+V &+*+=+R -+V ;+>+,+'+)+!+~ ~+*.{+]+^+/+(+_+#+:+,.V &+<+[+",
590
"].2 D ^./.(._.:.<.u %.[.}.|.1.2.3.4.5.3 n 6.7.8.9.].0.a.^./.b.c.",
591
"d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.3 x.y.z.A.d.B.C.g.h.D.E.",
592
"F.G.H.I.J.K.+.L.M.N.O.P.Q.R.9 S.T.U.V.W.X.Y.Z.`.t.F. +.+I.J.++@+",
593
"#+$+%+V &+*+=+R -+V ;+>+,+'+)+!+~ ~+*.{+]+^+/+(+_+#+:+,.V &+<+[+",
594
"].2 D ^./.(._.:.<.u %.[.}.|.1.2.3.4.5.3 n 6.7.8.9.].0.a.^./.b.c.",
595
"d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.3 x.y.z.A.d.B.C.g.h.D.E.",
596
"F.G.H.I.J.K.+.L.M.N.O.P.Q.R.9 S.T.U.V.W.X.Y.Z.`.t.F. +.+I.J.++@+",
597
"}+5.|+1+2+3+4+5+[+6+7+8+,+9+0+a+/ b+c+d+e+f+g+h+f+}+i+j+1+2+k+l+",
598
"m+n+o+p+q+r+s+!.t+u+v+w+x+y+-+z+A+B+C+z+D+E+F+G+H+m+9+I+p+q+J+K+",
599
"L+M+C+N+O+P+Q+R+S+T+d+R+S+U+V+R+S+W+X+R+S+Y+Z+R+S+`+ @s N+O+.@E ",
600
"+@@@#@$@(.%@&@*@=@-@;@>@=@,@'@)@=@!@~@{@=@]@^@/@=@(@_@:@$@(.3+<@",
601
"[@}@|@1@2@3@4@+.5@6@7@8@9@0@a@b@c@d@e@f@g@h@i@j@k@[@l@m@1@2@i@n@",
602
"o@p@q@r@s@t@u@v@w@x@y@z@A@B@C@D@E@F@o G@H@I@J@K@L@o@M@N@O@P@Q@R@",
603
"S@T@U@R+S+V@W@X@Y@Z@`@X@Y@ #8@X@Y@.#+#X@Y@@#-@X@Y@##b+R+S+$#%#&#",
604
"*#=#-#;#=@>#,#'#X@)#!#~#X@{#.@]#X@^#_./#X@(#D._#X@:#<#[#=@}#|#1#",
605
"2#3#4#5#6#7#8#X+9#1.0#a#^+b@)++ v b#c#C+d#e#f#-+g#2#h#i#5#6#j#k#",
606
"l#m#n#o#A+P.p#q#r#s#t#u#v#w#5+x#y#z#v+1+A#B#l+C#D#l#E#F#G#H#I#J#",
607
"u K#L#R+S+M#`@X@Y@N#O#R+S+P#..R+S+Q#R#R+S+t+S#X@Y@T#U#R+S+V#7#W#",
608
"X#Y#Z#`#=@1.V  $X@.$9 +$=@@$#$$$=@%$&$*$=@=$D ~#X@-$;$>$=@,$S#'$",
609
")$!$~${$]$^$/$($_$:$<$[$}$|$1$#@2$C+3$4$5$6$7$8$9$)$0$a${$]$b$,.",
610
"c$d$)$,@e$f$9 g$h$i$9#j$k$l$d+m$n$o$p$q$r$z#s$t$u$c$v$w$x$y$z$A$",
611
"K.# B$R+S+C$D$X@Y@E$R F$G$H$I$X@Y@J$R K$J L$1.X@Y@M$N$R+S+O$P$Q$",
612
"R$S$T$U$=@ @,@V$X@W$X$Y$Z$`$Q+ %X@.%,@+%@%J._ V$X@C##%$%=@%%R ^.",
613
"&%*%b$z$o =%-%g ;%g >%j ~ ,%'%9 )%!%~%{%]%^%/%(%z$&%_%:%z$o <%:%"};
614
++ uligo-0.3/debian/uligo.png.uu
Line 0 Link Here
0
-- uligo-0.3.orig/debian/dirs
1
begin 644 uligo.png
2
M+RH@6%!-("HO"G-T871I8R!C:&%R("H@=6QI9V]?9&5B:6%N7WAP;5M=(#T@
3
M>PHB,S(@,S(@-3<X(#(B+`HB("`)8R`C03$U13)"(BP*(BX@"6,@(T$P-44R
4
M02(L"B(K(`EC(",W,#-#,4,B+`HB0"`)8R`C034U13)!(BP*(B,@"6,@(SE%
5
M-4$R.2(L"B(D(`EC(",Y-#4S,C<B+`HB)2`)8R`C-C4S-S%"(BP*(B8@"6,@
6
M(SA!-$4R-B(L"B(J(`EC(",W130W,C8B+`HB/2`)8R`C-S8T,C(T(BP*(BT@
7
M"6,@(S5",S,Q0R(L"B([(`EC(",W0S0W,C8B+`HB/B`)8R`C.#`T03(W(BP*
8
M(BP@"6,@(S=%-#@R-2(L"B(G(`EC(",V,S,V,4,B+`HB*2`)8R`C.3<U-C(X
9
M(BP*(B$@"6,@(SE$-3DR."(L"B)^(`EC(",V0S-#,40B+`HB>R`)8R`C.48U
10
M0S)!(BP*(ET@"6,@(SE!-3@R."(L"B)>(`EC(",Y0S4X,C<B+`HB+R`)8R`C
11
M-S`S1#%#(BP*(B@@"6,@(SE!-3DR."(L"B)?(`EC(",W,#-%,44B+`HB.B`)
12
M8R`C.48U.3(X(BP*(CP@"6,@(S8X,SDQ0R(L"B);(`EC(",X134P,C8B+`HB
13
M?2`)8R`C.$$T13(W(BP*(GP@"6,@(SA"-3`R."(L"B(Q(`EC(",V13-!,4,B
14
M+`HB,B`)8R`C.3@U-3(X(BP*(C,@"6,@(SDR-3`R-B(L"B(T(`EC(",X0C1#
15
M,C4B+`HB-2`)8R`C-C$S-S%#(BP*(C8@"6,@(SA#-3(R."(L"B(W(`EC(",Y
16
M,34R,C@B+`HB."`)8R`C.$8U,#(W(BP*(CD@"6,@(S8V,S@Q0R(L"B(P(`EC
17
M(",Y,#4Q,C8B+`HB82`)8R`C.3`U,C(X(BP*(F(@"6,@(SDR-3$R-R(L"B)C
18
M(`EC(",V-#,V,4,B+`HB9"`)8R`C.$,T13(V(BP*(F4@"6,@(SDS-3(R-R(L
19
M"B)F(`EC(",Y.#4T,C<B+`HB9R`)8R`C-C8S-C%"(BP*(F@@"6,@(SA%-3$R
20
M."(L"B)I(`EC(",X,#0X,C4B+`HB:B`)8R`C-C0S-C%"(BP*(FL@"6,@(S=&
21
M-#8R-"(L"B)L(`EC(",X-31#,C8B+`HB;2`)8R`C-CDS.3%#(BP*(FX@"6,@
22
M(SDT-30R."(L"B)O(`EC(",V-3,V,4$B+`HB<"`)8R`C044V-3)#(BP*(G$@
23
M"6,@(T%#-C0R0R(L"B)R(`EC(",W,#-%,40B+`HB<R`)8R`C03@V,#)"(BP*
24
M(G0@"6,@(T%"-C`R02(L"B)U(`EC("-!-C5&,D$B+`HB=B`)8R`C-D0S0C%#
25
M(BP*(G<@"6,@(SDS-30R."(L"B)X(`EC("-!,#5$,D(B+`HB>2`)8R`C03`U
26
M0C(Y(BP*(GH@"6,@(S<U,T8Q0R(L"B)!(`EC("-!-S8P,D,B+`HB0B`)8R`C
27
M.4$U.#(Y(BP*(D,@"6,@(SE&-4$R.2(L"B)$(`EC(",W-#-$,4(B+`HB12`)
28
M8R`C03`U.#(X(BP*(D8@"6,@(SE%-38R-R(L"B)'(`EC("-!-C5%,CDB+`HB
29
M2"`)8R`C-S`S0S%$(BP*(DD@"6,@(T$U-40R02(L"B)*(`EC("-!0C8R,D,B
30
M+`HB2R`)8R`C040V-#)#(BP*(DP@"6,@(S<R,T0Q1"(L"B)-(`EC("-!0C8V
31
M,D0B+`HB3B`)8R`C-S$S1C%$(BP*(D\@"6,@(T$R-4,R02(L"B)0(`EC(",W
32
M-#-&,4,B+`HB42`)8R`C.4$U-C(X(BP*(E(@"6,@(S<T-#`Q12(L"B)3(`EC
33
M(",W-30Q,48B+`HB5"`)8R`C-4,S,3$V(BP*(E4@"6,@(S=#-#0Q1"(L"B)6
34
M(`EC(",W.30R,44B+`HB5R`)8R`C-S8T-#(Q(BP*(E@@"6,@(S5!,S`Q-R(L
35
M"B)9(`EC(",W-C0S,C`B+`HB6B`)8R`C-T$T-#%&(BP*(F`@"6,@(S=$-#0R
36
M,"(L"B(@+@EC(",U1#,S,3@B+`HB+BX)8R`C-T4T-S(P(BP*(BLN"6,@(S=$
37
M-#8Q12(L"B)`+@EC(",W030Q,40B+`HB(RX)8R`C-38R13$V(BP*(B0N"6,@
38
M(S<Q,T8Q12(L"B(E+@EC(",W.#0R,44B+`HB)BX)8R`C.#`T-3%$(BP*(BHN
39
M"6,@(S8W,S,Q-"(L"B(]+@EC(",W.#0P,4(B+`HB+2X)8R`C-SDT,C%$(BP*
40
M(CLN"6,@(S<V-#`Q12(L"B(^+@EC(",U0C,P,38B+`HB+"X)8R`C-D$S.3%"
41
M(BP*(B<N"6,@(S<R,T8Q12(L"B(I+@EC(",U0C,Q,3@B+`HB(2X)8R`C-S<T
42
M,C%%(BP*(GXN"6,@(S5%,S,Q."(L"B)[+@EC(",W-#0Q,48B+`HB72X)8R`C
43
M.3(U,C(X(BP*(EXN"6,@(T$V-44R02(L"B(O+@EC("-",38V,D,B+`HB*"X)
44
M8R`C0C0V-C)#(BP*(E\N"6,@(S=#-#,Q12(L"B(Z+@EC("-"-S8Y,D,B+`HB
45
M/"X)8R`C040V,#(Y(BP*(ELN"6,@(T(P-C(R0R(L"B)]+@EC("-",S8V,D8B
46
M+`HB?"X)8R`C0C`V-#)#(BP*(C$N"6,@(S<X-#(Q1"(L"B(R+@EC("-!-C5$
47
M,D$B+`HB,RX)8R`C04(V,#(Y(BP*(C0N"6,@(T$T-4(R."(L"B(U+@EC(",V
48
M,C,V,4,B+`HB-BX)8R`C.38U,C(V(BP*(C<N"6,@(S<W,T,Q.2(L"B(X+@EC
49
M(",X0C1!,C0B+`HB.2X)8R`C.#DT0S(V(BP*(C`N"6,@(S<T,T,Q02(L"B)A
50
M+@EC(",Y134W,C<B+`HB8BX)8R`C.#`T-3%%(BP*(F,N"6,@(T(U-C<R1"(L
51
M"B)D+@EC(",Y1#4X,CDB+`HB92X)8R`C03$U-C(V(BP*(F8N"6,@(S=#-#(Q
52
M0R(L"B)G+@EC("-",S8T,D(B+`HB:"X)8R`C0C8V-S)"(BP*(FDN"6,@(T)#
53
M-S`S,"(L"B)J+@EC(",W0S0V,C`B+`HB:RX)8R`C0C(V-C)$(BP*(FPN"6,@
54
M(SE#-3@R."(L"B)M+@EC("-",38Y,D4B+`HB;BX)8R`C-T(T.#(R(BP*(F\N
55
M"6,@(T)"-D4S,"(L"B)P+@EC("-"039$,S(B+`HB<2X)8R`C0C8V1C,Q(BP*
56
M(G(N"6,@(S9&,T4Q0R(L"B)S+@EC(",X0S1&,C<B+`HB="X)8R`C.#$T-S(T
57
M(BP*(G4N"6,@(S=#-#(R,B(L"B)V+@EC(",V-S,W,4(B+`HB=RX)8R`C.40U
58
M-C(W(BP*(G@N"6,@(S@P-#8R-"(L"B)Y+@EC(",V0S,W,3@B+`HB>BX)8R`C
59
M.#(T-S(T(BP*(D$N"6,@(SDS-3,R."(L"B)"+@EC(",W.#-%,4(B+`HB0RX)
60
M8R`C04$U1#(X(BP*(D0N"6,@(S=%-#@R,2(L"B)%+@EC("-"039#,D0B+`HB
61
M1BX)8R`C.$4T13(V(BP*(D<N"6,@(SDT-3$R-B(L"B)(+@EC(",W-C-&,4(B
62
M+`HB22X)8R`C04$U13)!(BP*(DHN"6,@(T%#-C(R0B(L"B)++@EC("-!138R
63
M,D$B+`HB3"X)8R`C0D$V13)%(BP*(DTN"6,@(T(X-D0R1B(L"B).+@EC("-!
64
M1C8V,D0B+`HB3RX)8R`C-S4T-#%&(BP*(E`N"6,@(T%%-CDR12(L"B)1+@EC
65
M("-",39#,D8B+`HB4BX)8R`C03(U1C)#(BP*(E,N"6,@(SE"-3@R."(L"B)4
66
M+@EC(",Y134Y,C@B+`HB52X)8R`C04,U1C(Y(BP*(E8N"6,@(S<X-#`Q1"(L
67
M"B)7+@EC("-!,34X,C@B+`HB6"X)8R`C.#<T1#(V(BP*(EDN"6,@(S=#-#,R
68
M,R(L"B):+@EC(",U.3,P,3DB+`HB8"X)8R`C-S8S1C(R(BP*(B`K"6,@(S9%
69
M,T$Q0B(L"B(N*PEC(",Y1#4W,C<B+`HB*RL)8R`C-T0T,S%#(BP*(D`K"6,@
70
M(T(V-CDR1"(L"B(C*PEC(",V.3-",4,B+`HB)"L)8R`C-48S,S%"(BP*(B4K
71
M"6,@(S5!,D8Q-B(L"B(F*PEC(",W030V,44B+`HB*BL)8R`C-SDT-#%%(BP*
72
M(CTK"6,@(S5",S$Q-R(L"B(M*PEC(",W030V,48B+`HB.RL)8R`C-C0S-C$X
73
M(BP*(CXK"6,@(S@P-#@R,2(L"B(L*PEC(",W131",C(B+`HB)RL)8R`C-S4T
74
M,3%%(BP*(BDK"6,@(S5!,S$Q-R(L"B(A*PEC(",W,C0U,C$B+`HB?BL)8R`C
75
M-S0T,#%#(BP*(GLK"6,@(S=#-#$Q0R(L"B)=*PEC(",W0S0Q,40B+`HB7BL)
76
M8R`C-T$T,C%%(BP*(B\K"6,@(S8Q,S(Q-B(L"B(H*PEC(",W-C0Q,48B+`HB
77
M7RL)8R`C-S0T,#%&(BP*(CHK"6,@(S4P,CDQ-2(L"B(\*PEC(",U1#,R,3<B
78
M+`HB6RL)8R`C-S8T-3(P(BP*(GTK"6,@(S<P,T8Q1"(L"B)\*PEC(",U13,Q
79
M,38B+`HB,2L)8R`C-T0T-C%&(BP*(C(K"6,@(S=$-#@R,"(L"B(S*PEC(",W
80
M1#0U,44B+`HB-"L)8R`C-44S,C$X(BP*(C4K"6,@(S<R-#`Q12(L"B(V*PEC
81
M(",W-#0R,44B+`HB-RL)8R`C-44S-C$Y(BP*(C@K"6,@(S=#-#DR,B(L"B(Y
82
M*PEC(",W-30R,44B+`HB,"L)8R`C-C`S-#$W(BP*(F$K"6,@(S=#-#DR,"(L
83
M"B)B*PEC(",W,#-$,4(B+`HB8RL)8R`C-48S,3$V(BP*(F0K"6,@(S<V-#`Q
84
M1"(L"B)E*PEC(",W0C0S,44B+`HB9BL)8R`C-T,T-#%&(BP*(F<K"6,@(S8W
85
M,S8Q-R(L"B)H*PEC(",W130T,44B+`HB:2L)8R`C-30R0S$V(BP*(FHK"6,@
86
M(S9&,T(Q0R(L"B)K*PEC(",V,3,S,3<B+`HB;"L)8R`C-T$T-C(P(BP*(FTK
87
M"6,@(T(R-D,R1B(L"B)N*PEC("-",#8V,D,B+`HB;RL)8R`C-S0T,3%%(BP*
88
M(G`K"6,@(T%%-C0R0R(L"B)Q*PEC("-",C8W,D0B+`HB<BL)8R`C04$V,C)!
89
M(BP*(G,K"6,@(S9%,T,Q1"(L"B)T*PEC(",U,#)$,30B+`HB=2L)8R`C03DU
90
M13)"(BP*(G8K"6,@(S9$,T4Q12(L"B)W*PEC(",W1C1!,C`B+`HB>"L)8R`C
91
M-4,S.#$X(BP*(GDK"6,@(T$W-44R02(L"B)Z*PEC(",X-C4S,C0B+`HB02L)
92
M8R`C-4,S03$Y(BP*(D(K"6,@(T$Y-C4R1"(L"B)#*PEC(",W-C0R,44B+`HB
93
M1"L)8R`C-40S.#$Y(BP*(D4K"6,@(T(V-S(S,B(L"B)&*PEC(",W030X,C$B
94
M+`HB1RL)8R`C.#@U,C(T(BP*(D@K"6,@(S5",S<Q.2(L"B))*PEC("-!.38R
95
M,D,B+`HB2BL)8R`C-S`T,#%%(BP*(DLK"6,@(T$X-44R02(L"B),*PEC("-"
96
M,#8X,D4B+`HB32L)8R`C0C(V0S,Q(BP*(DXK"6,@(T%#-C$R0R(L"B)/*PEC
97
M("-!0C8T,D,B+`HB4"L)8R`C03$U0S(Y(BP*(E$K"6,@(S<T,T4Q1"(L"B)2
98
M*PEC(",P1C!&,$8B+`HB4RL)8R`C,#`P,#`P(BP*(E0K"6,@(S4Q,D,Q-"(L
99
M"B)5*PEC(",U-3)&,34B+`HB5BL)8R`C-S(S13%#(BP*(E<K"6,@(S4S,S`Q
100
M-2(L"B)8*PEC(",W0S0T,44B+`HB62L)8R`C-44S0S%!(BP*(EHK"6,@(S@R
101
M-$0R,B(L"B)@*PEC(",U-C,S,38B+`HB($`)8R`C-T,T-S(P(BP*(BY`"6,@
102
M(S<Q,T4Q1"(L"B(K0`EC("-"-#9!,D0B+`HB0$`)8R`C0D(W,3,R(BP*(B-`
103
M"6,@(S<X-#0R,"(L"B(D0`EC("-",#8U,D,B+`HB)4`)8R`C0C0V-S)%(BP*
104
M(B9`"6,@(S=$-#,Q12(L"B(J0`EC(",R.3$W,$$B+`HB/4`)8R`C,$$P03!!
105
M(BP*(BU`"6,@(S=%-#8Q1B(L"B([0`EC(",V13-%,40B+`HB/D`)8R`C,C@Q
106
M.#!"(BP*(BQ`"6,@(S<S,T8Q1"(L"B(G0`EC(",W,C-$,4,B+`HB*4`)8R`C
107
M,C8Q-3!!(BP*(B%`"6,@(S@R-$(R,"(L"B)^0`EC(",X,S1!,C`B+`HB>T`)
108
M8R`C,D4Q0S!$(BP*(EU`"6,@(SA#-3,R,R(L"B)>0`EC(",X-C4Q,C0B+`HB
109
M+T`)8R`C,D4Q0C!"(BP*(BA`"6,@(S@V-$4R,B(L"B)?0`EC(",W131!,C$B
110
M+`HB.D`)8R`C0C8V0C)%(BP*(CQ`"6,@(T(P-C(R0B(L"B);0`EC(",X,31!
111
M,C`B+`HB?4`)8R`C.#<U,#(R(BP*(GQ`"6,@(S8X,S@Q.2(L"B(Q0`EC(",X
112
M-#1#,C`B+`HB,D`)8R`C.#8T03(P(BP*(C-`"6,@(S@W-$$Q1"(L"B(T0`EC
113
M(",V-S,V,38B+`HB-4`)8R`C-T$T,C%$(BP*(C9`"6,@(S<Y-#`Q0R(L"B(W
114
M0`EC(",V,C,S,38B+`HB.$`)8R`C-S<T,#%#(BP*(CE`"6,@(S="-#4Q12(L
115
M"B(P0`EC(",W.30U,44B+`HB84`)8R`C-C(S-#$V(BP*(F)`"6,@(S<T,T4Q
116
M0R(L"B)C0`EC(",V1C,Y,3DB+`HB9$`)8R`C-S`S03%!(BP*(F5`"6,@(S8X
117
M,S0Q-"(L"B)F0`EC(",W0C0P,4,B+`HB9T`)8R`C-SDT,3%"(BP*(FA`"6,@
118
M(S=%-#,Q0R(L"B)I0`EC(",V13-!,38B+`HB:D`)8R`C.#(T.#%$(BP*(FM`
119
M"6,@(S@Q-#8Q12(L"B)L0`EC(",V03-",4$B+`HB;4`)8R`C.#4T13(R(BP*
120
M(FY`"6,@(S@P-#8Q1"(L"B)O0`EC(",Y1C5#,CDB+`HB<$`)8R`C.4,U03)!
121
M(BP*(G%`"6,@(S9%,T(Q0B(L"B)R0`EC(",U13,T,4(B+`HB<T`)8R`C-#(R
122
M-3$R(BP*(G1`"6,@(S@T-$$R-B(L"B)U0`EC(",V.3,X,4$B+`HB=D`)8R`C
123
M.3$V-31!(BP*(G=`"6,@(T$U.#0V12(L"B)X0`EC(",Y-C4P,C0B+`HB>4`)
124
M8R`C-S8T,#%#(BP*(GI`"6,@(T$V-S`T0R(L"B)!0`EC("-!1#@Y-S`B+`HB
125
M0D`)8R`C.48U-C(V(BP*(D-`"6,@(S<R,T(Q02(L"B)$0`EC(",Y0S8X-#DB
126
M+`HB14`)8R`C03(X,C9%(BP*(D9`"6,@(S@T-#DR-2(L"B)'0`EC(",X1#8T
127
M-$$B+`HB2$`)8R`C.44X,C<P(BP*(DE`"6,@(S@S-#DR-2(L"B)*0`EC(",V
128
M0S,Y,4$B+`HB2T`)8R`C.44V1#1#(BP*(DQ`"6,@(T%$.$,W,B(L"B)-0`EC
129
M(",W.30Q,4,B+`HB3D`)8R`C-C4S03%%(BP*(D]`"6,@(S,Y,48Q,2(L"B)0
130
M0`EC(",X-31",C8B+`HB44`)8R`C-D(S.#%!(BP*(E)`"6,@(S@P-#<R-2(L
131
M"B)30`EC("-!,35%,D,B+`HB5$`)8R`C.3`U-#(X(BP*(E5`"6,@(S9$,SDQ
132
M02(L"B)60`EC(",T,C(W,30B+`HB5T`)8R`C-S$S0S%!(BP*(EA`"6,@(T,Y
133
M0SE#.2(L"B)90`EC("-"-T(W0C<B+`HB6D`)8R`C038X-39&(BP*(F!`"6,@
134
M(S<T-#`Q1"(L"B(@(PEC("-!03@Y-S`B+`HB+B,)8R`C048X.39&(BP*(BLC
135
M"6,@(S=%-#8Q12(L"B)`(PEC("-",3A$-S$B+`HB(R,)8R`C03DX.#<P(BP*
136
M(B0C"6,@(S-%,C0Q,R(L"B(E(PEC(",W,3-%,4$B+`HB)B,)8R`C.#0T0S(W
137
M(BP*(BHC"6,@(T(X-D4S,"(L"B(](PEC("-"0C<P,S`B+`HB+2,)8R`C.#,T
138
M13(S(BP*(CLC"6,@(S,P,44P1"(L"B(^(PEC(",X034T,C8B+`HB+",)8R`C
139
M.#0T03%&(BP*(B<C"6,@(T(W03,Y-"(L"B(I(PEC("-!03<R-$,B+`HB(2,)
140
M8R`C-D$S03%#(BP*(GXC"6,@(T(P.44Y,B(L"B)[(PEC("-!,C<P-$,B+`HB
141
M72,)8R`C0C%!,#DT(BP*(EXC"6,@(T%#-S0T0R(L"B(O(PEC("-"-D$S.30B
142
M+`HB*",)8R`C0C(W.#1%(BP*(E\C"6,@(T(X03<Y-B(L"B(Z(PEC("-"-S=%
143
M-3`B+`HB/",)8R`C.#0T0S(Q(BP*(ELC"6,@(S,P,C`P12(L"B)](PEC(",X
144
M034S,C0B+`HB?",)8R`C.#(T03(Q(BP*(C$C"6,@(T(Y-D4R1B(L"B(R(PEC
145
M(",W0C0V,C`B+`HB,R,)8R`C-T4T.3(P(BP*(C0C"6,@(S8X,T$Q.2(L"B(U
146
M(PEC(",X,#1#,C`B+`HB-B,)8R`C-S<T-#%&(BP*(C<C"6,@(S<V-#$Q1"(L
147
M"B(X(PEC(",V-#,V,3<B+`HB.2,)8R`C-T(T-#%%(BP*(C`C"6,@(S5%,S`Q
148
M-B(L"B)A(PEC(",W-S0P,40B+`HB8B,)8R`C-D$S.3%#(BP*(F,C"6,@(S5$
149
M,S,Q.2(L"B)D(PEC(",W0S0X,C$B+`HB92,)8R`C-T4T-S%&(BP*(F8C"6,@
150
M(S5%,S,Q-R(L"B)G(PEC(",W1#0T,44B+`HB:",)8R`C-C4S.#$X(BP*(FDC
151
M"6,@(S@S-$4R,B(L"B)J(PEC(",U13,R,3<B+`HB:R,)8R`C-T4T-S%%(BP*
152
M(FPC"6,@(T(V-S$S,B(L"B)M(PEC("-".3<S,S(B+`HB;B,)8R`C-T(T03(R
153
M(BP*(F\C"6,@(S@Y-38R-2(L"B)P(PEC(",W-C0T,44B+`HB<2,)8R`C04,W
154
M031&(BP*(G(C"6,@(T(R.$4W,B(L"B)S(PEC("-".#<R,S(B+`HB=",)8R`C
155
M-S(T,#%$(BP*(G4C"6,@(S=$-#DR,2(L"B)V(PEC(",U-#,P,34B+`HB=R,)
156
M8R`C04$V,#)"(BP*(G@C"6,@(S=%-$$R,"(L"B)Y(PEC(",U-S,P,34B+`HB
157
M>B,)8R`C03DU13(Y(BP*(D$C"6,@(S4X,S0Q-B(L"B)"(PEC("-!.38P,D(B
158
M+`HB0R,)8R`C0C`W034P(BP*(D0C"6,@(T(S.3`W,R(L"B)%(PEC(",W031!
159
M,C(B+`HB1B,)8R`C.$(U.#(W(BP*(D<C"6,@(S5$,T$Q02(L"B)((PEC("-"
160
M-C<R,S$B+`HB22,)8R`C-S@T-3%&(BP*(DHC"6,@(T%!-C4R0R(L"B)+(PEC
161
M("-!-C5%,D(B+`HB3",)8R`C-T(T,C%#(BP*(DTC"6,@(S4Q,D8Q-2(L"B).
162
M(PEC("-",#A%-S(B+`HB3R,)8R`C-T,T.#(P(BP*(E`C"6,@(S5#,S<Q."(L
163
M"B)1(PEC(",U.3,T,3<B+`HB4B,)8R`C-S<T,S%%(BP*(E,C"6,@(S<W-#$Q
164
M12(L"B)4(PEC("-!13A"-S$B+`HB52,)8R`C-T,T,C%$(BP*(E8C"6,@(S4V
165
M,S(Q-B(L"B)7(PEC(",Y135",CDB+`HB6",)8R`C-T0T-#(T(BP*(EDC"6,@
166
M(S<W-#`R,B(L"B):(PEC(",U-C)$,3DB+`HB8",)8R`C,4$P1#`X(BP*(B`D
167
M"6,@(T(V03(Y-"(L"B(N)`EC(",Y1C9%-$,B+`HB*R0)8R`C,C0Q-#`Y(BP*
168
M(D`D"6,@(S@U-3$R,R(L"B(C)`EC(",W-C0S,48B+`HB)"0)8R`C,C@Q-C!!
169
M(BP*(B4D"6,@(SA#-30R-"(L"B(F)`EC(",W.#0Q,4,B+`HB*B0)8R`C,D,Q
170
M.3!"(BP*(CTD"6,@(S@P-#@R,"(L"B(M)`EC(",X138R-#DB+`HB.R0)8R`C
171
M-3DR1C$Y(BP*(CXD"6,@(S%%,3`P."(L"B(L)`EC(",V-C,Y,40B+`HB)R0)
172
M8R`C0C$V,C)!(BP*(BDD"6,@(S<Y,T4Q02(L"B(A)`EC(",W-3-%,4(B+`HB
173
M?B0)8R`C-C`R1C$R(BP*(GLD"6,@(S8R,S$Q-R(L"B)=)`EC(",V,#,R,3DB
174
M+`HB7B0)8R`C-CDS.#%"(BP*(B\D"6,@(S4R,D,Q-B(L"B(H)`EC(",V-#,X
175
M,4,B+`HB7R0)8R`C-44S,S%!(BP*(CHD"6,@(S8S,S<Q0R(L"B(\)`EC(",U
176
M-3)%,3<B+`HB6R0)8R`C-S<T-#(P(BP*(GTD"6,@(S=#-$$R,B(L"B)\)`EC
177
M(",W1#1%,C0B+`HB,20)8R`C-4(S-3%!(BP*(C(D"6,@(S9#,T$Q0R(L"B(S
178
M)`EC(",U0C,R,3@B+`HB-"0)8R`C-T8T-S%&(BP*(C4D"6,@(S@P-#0Q1"(L
179
M"B(V)`EC(",X,#0R,4,B+`HB-R0)8R`C-C8S-#$U(BP*(C@D"6,@(S<Y,T0Q
180
M02(L"B(Y)`EC(",W030P,4,B+`HB,"0)8R`C-C8S,S$T(BP*(F$D"6,@(S8X
181
M,S4Q."(L"B)B)`EC(",U-3)#,38B+`HB8R0)8R`C.#<T0C(U(BP*(F0D"6,@
182
M(SA"-$(R-"(L"B)E)`EC(",T-3(V,3(B+`HB9B0)8R`C.3`T1C(V(BP*(F<D
183
M"6,@(T$S-D4T0B(L"B)H)`EC("-!1C@Y-S`B+`HB:20)8R`C04(V,3)#(BP*
184
M(FHD"6,@(T$Y-C$R0R(L"B)K)`EC("-!038Q,D,B+`HB;"0)8R`C030U0S)"
185
M(BP*(FTD"6,@(T$V-S(T1"(L"B)N)`EC("-!13A!-S`B+`HB;R0)8R`C0C<V
186
M.#)$(BP*(G`D"6,@(S=&-#0Q12(L"B)Q)`EC("-"-S8Y,D0B+`HB<B0)8R`C
187
M0C`V,S)#(BP*(G,D"6,@(S<R,T,Q0B(L"B)T)`EC("-!-#<Q-$0B+`HB=20)
188
M8R`C03`X,C9%(BP*(G8D"6,@(S9%,S@Q.2(L"B)W)`EC(",W,C-%,40B+`HB
189
M>"0)8R`C-$4R03$S(BP*(GDD"6,@(SA%-$8R-B(L"B)Z)`EC(",V-3,V,4(B
190
M+`HB020)8R`C.38U,S(W(BP*(D(D"6,@(S<W-#$Q0R(L"B)#)`EC(",U,#)%
191
M,30B+`HB1"0)8R`C-T,T,#%"(BP*(D4D"6,@(T(P.$0W,2(L"B)&)`EC("-"
192
M,C8U,D,B+`HB1R0)8R`C0C<V03)%(BP*(D@D"6,@(T)!-D0R1B(L"B)))`EC
193
M(",W1#0U,48B+`HB2B0)8R`C0C<Y,#<S(BP*(DLD"6,@(T$T-44R02(L"B),
194
M)`EC("-"-#8V,D$B+`HB320)8R`C0C$X0S<P(BP*(DXD"6,@(S9",T$Q0R(L
195
M"B)/)`EC(",U,3)%,34B+`HB4"0)8R`C-S8S1C%#(BP*(E$D"6,@(T$T-4$R
196
M."(L"B)2)`EC("-!1C8W,D4B+`HB4R0)8R`C040V-C)%(BP*(E0D"6,@(S<W
197
M-#`Q12(L"B)5)`EC(",R0C$X,$(B+`HB5B0)8R`C0C)!,#DT(BP*(E<D"6,@
198
M(T$S-D0T02(L"B)8)`EC(",W-3-$,4,B+`HB620)8R`C03`U03(Y(BP*(EHD
199
M"6,@(T$P-4,R0R(L"B)@)`EC("-!-#5$,D$B+`HB("4)8R`C044Y13DS(BP*
200
M(BXE"6,@(T$Q-D8T0R(L"B(K)0EC("-!,S5$,D$B+`HB0"4)8R`C03@V,C)"
201
M(BP*(B,E"6,@(S<T-#(R,"(L"B(D)0EC(",R03$X,$$B+`HB)24)8R`C-T8T
202
M.3(R(BP*(B8E"6,@(S8S,S8Q0B(L"B(J)0EC(",V,C,S,4$B+`HB/24)8R`C
203
M-C0S-C%!(BP*(BTE"6,@(S4S,D$Q-"(L"B([)0EC(",V03,X,4(B+`HB/B4)
204
M8R`C-$,R-S$T(BP*(BPE"6,@(S8X,T$Q12(L"B(G)0EC(",U,3)",3<B+`HB
205
M*24)8R`C-C@S.#%#(BP*(B$E"6,@(S9!,T,Q12(L"B)^)0EC(",U,C)%,3@B
206
M+`HB>R4)8R`C-C8S.3%#(BP*(ETE"6,@(S8T,S<Q0R(L"B)>)0EC(",V-C,Y
207
M,44B+`HB+R4)8R`C-3<R13$V(BP*(B@E"6,@(S8W,S<Q02(L"B)?)0EC(",U
208
M,C)!,34B+`HB.B4)8R`C-C0S-3%!(BP*(CPE"6,@(S4R,D(Q-2(L"B(@("X@
209
M*R!`(",@)"`E("8@*B`]("T@.R`^("P@)R`F("D@(2!^('L@72!>("\@*"`I
210
M("`@7R`Z($`@(R`\(%L@(BP*(GT@?"`Q(#(@,R`T(#4@-B`W(#@@.2`P(&$@
211
M8B!C(&0@92!F(&<@:"`F(&D@:B!K(&P@?2!M(&X@,B`S(&\@?"`B+`HB<"!Q
212
M('(@<R!T('4@=B!W('@@>2!Z($$@0B!#($0@12!&($<@2"!)($H@2R!,('4@
213
M32!P($X@3R!S('0@4"!1("(L"B)2(%,@5"!5(%8@5R!8(%D@6B!@("`N+BXK
214
M+D`N(RXD+B4N)BXJ+CTN+2X[+CXN+"XG+E(@*2XA+E4@5B!^+GLN(BP*(ETN
215
M,B!$(%XN+RXH+E\N.BX\+G4@)2Y;+GTN?"XQ+C(N,RXT+C4N,R!N(#8N-RXX
216
M+CDN72XP+F$N7BXO+F(N8RXB+`HB9"YE+F8N9RYH+FDN:BYK+FPN;2YN+F\N
217
M<"YQ+G(N<RYT+G4N=BYW+C,@>"YY+GHN02YD+D(N0RYG+F@N1"Y%+B(L"B)&
218
M+D<N2"Y)+DHN2RXK+DPN32Y.+D\N4"Y1+E(N.2!3+E0N52Y6+E<N6"Y9+EHN
219
M8"YT+D8N("LN*TDN2BXK*T`K(BP*(B,K)"LE*U8@)BLJ*STK4B`M*U8@.RL^
220
M*RPK)RLI*R$K?B!^*RHN>RM=*UXK+RLH*U\K(RLZ*RPN5B`F*SPK6RLB+`HB
221
M72XR($0@7BXO+B@N7RXZ+CPN=2`E+ELN?2Y\+C$N,BXS+C0N-2XS(&X@-BXW
222
M+C@N.2Y=+C`N82Y>+B\N8BYC+B(L"B)D+F4N9BYG+F@N:2YJ+FLN;"YM+FXN
223
M;RYP+G$N<BYS+G0N=2YV+G<N,R!X+GDN>BY!+F0N0BY#+F<N:"Y$+D4N(BP*
224
M(D8N1RY(+DDN2BY++BLN3"Y-+DXN3RY0+E$N4BXY(%,N5"Y5+E8N5RY8+EDN
225
M6BY@+G0N1BX@*RXK22Y*+BLK0"LB+`HB(RLD*R4K5B`F*RHK/2M2("TK5B`[
226
M*SXK+"LG*RDK(2M^('XK*BY[*UTK7BLO*R@K7RLC*SHK+"Y6("8K/"M;*R(L
227
M"B)=+C(@1"!>+B\N*"Y?+CHN/"YU("4N6RY]+GPN,2XR+C,N-"XU+C,@;B`V
228
M+C<N."XY+ETN,"YA+EXN+RYB+F,N(BP*(F0N92YF+F<N:"YI+FHN:RYL+FTN
229
M;BYO+G`N<2YR+G,N="YU+G8N=RXS('@N>2YZ+D$N9"Y"+D,N9RYH+D0N12XB
230
M+`HB1BY'+D@N22Y*+DLN*RY,+DTN3BY/+E`N42Y2+CD@4RY4+E4N5BY7+E@N
231
M62Y:+F`N="Y&+B`K+BM)+DHN*RM`*R(L"B)]*S4N?"LQ*S(K,RLT*S4K6RLV
232
M*S<K."LL*SDK,"MA*R\@8BMC*V0K92MF*V<K:"MF*WTK:2MJ*S$K,BMK*VPK
233
M(BP*(FTK;BMO*W`K<2MR*W,K(2YT*W4K=BMW*W@K>2LM*WHK02M"*T,K>BM$
234
M*T4K1BM'*T@K;2LY*TDK<"MQ*THK2RLB+`HB3"M-*T,K3BM/*U`K42M2*U,K
235
M5"MD*U(K4RM5*U8K4BM3*U<K6"M2*U,K62M:*U(K4RM@*R!`<R!.*T\K+D!%
236
M("(L"B(K0$!`(T`D0"@N)4`F0"I`/4`M0#M`/D`]0"Q`)T`I0#U`(4!^0'M`
237
M/4!=0%Y`+T`]0"A`7T`Z0"1`*"XS*SQ`(BP*(EM`?4!\0#%`,D`S0#1`*RXU
238
M0#9`-T`X0#E`,$!A0&)`8T!D0&5`9D!G0&A`:4!J0&M`6T!L0&U`,4`R0&E`
239
M;D`B+`HB;T!P0'%`<D!S0'1`=4!V0'=`>$!Y0'I`04!"0$-`1$!%0$9`;R!'
240
M0$A`24!*0$M`3$!O0$U`3D!/0%!`44!20"(L"B)30%1`54!2*U,K5D!70%A`
241
M64!:0&!`6$!90"`C.$!80%E`+B,K(UA`64!`(RU`6$!90",C8BM2*U,K)",E
242
M(R8C(BP*(BHC/2,M(SLC/4`^(RPC)R-80"DC(2-^(UA`>R,N0%TC6$!>(U\N
243
M+R-80"@C1"Y?(UA`.B,\(ULC/4!](WPC,2,B+`HB,B,S(S0C-2,V(S<C."-8
244
M*SDC,2XP(V$C7BMB0"DK*R!V(&(C8R-#*V0C92-F(RTK9R,R(V@C:2,U(S8C
245
M:B-K(R(L"B)L(VTC;B-O(T$K4"YP(W$C<B-S(W0C=2-V(W<C-2MX(WDC>B-V
246
M*S$K02-"(VPK0R-$(VPC12-&(T<C2"-)(THC(BP*(G4@2R-,(U(K4RM-(V!`
247
M6$!90$XC3R-2*U,K4",N+E(K4RM1(U(C4BM3*W0K4R-80%E`5"-5(U(K4RM6
248
M(S<C5R,B+`HB6"-9(UHC8",]0#$N5B`@)%A`+B0Y("LD/4!`)",D)"0]0"4D
249
M)B0J)#U`/21$('XC6$`M)#LD/B0]0"PD4R,G)"(L"B(I)"$D?B1[)%TD7B0O
250
M)"@D7R0Z)#PD6R1])'PD,20C0#(D0RLS)#0D-20V)#<D."0Y)"DD,"1A)'LD
251
M721B)"PN(BP*(F,D9"0I)"Q`921F)#D@9R1H)&DD.2-J)&LD;"1D*VTD;B1O
252
M)'`D<21R)'HC<R1T)'4D8R1V)'<D>"1Y)'HD020B+`HB2RXC($(D4BM3*T,D
253
M1"180%E`1212($8D1R1()$DD6$!90$HD4B!+)$H@3"0Q+EA`64!-)$XD4BM3
254
M*T\D4"11)"(L"B)2)%,D5"15)#U`($`L0%8D6$!7)%@D621:)&`D42L@)5A`
255
M+B4L0"LE0"5*+E\@5B180$,C(R4D)3U`)252(%XN(BP*(B8E*B5B)'HD;R`]
256
M)2TE9R`[)6<@/B5J('X@+"4G)3D@*24A)7XE>R5=)5XE+R4H)7HD)B5?)3HE
257
,>B1O(#PE.B4B?3L*
258
`
259
end
260
++ uligo-0.3/debian/dirs
Line 0 Link Here
0
-- uligo-0.3.orig/debian/copyright
1
usr/games
2
usr/share/games/uligo
3
usr/share/games/uligo/sgf
4
usr/share/games/uligo/gifs
5
++ uligo-0.3/debian/copyright
Line 0 Link Here
0
-- uligo-0.3.orig/debian/rules
1
This package was debianized by Joe Wreschnig <piman@debian.org> on
2
Sun, 16 Feb 2003 03:38:17 -0600.
3
4
It was downloaded from http://www.u-go.net/uligo/
5
6
Upstream Author: Ulrich Goertz <uligo@g0ertz.de>
7
8
Copyright:
9
10
uliGo itself is under the GNU GPL v2 or later, viewable in
11
/usr/share/common-licenses/GPL on Debian GNU/Linux systems.
12
13
The problems contained in the package are either by the author himself,
14
or from classical collections (old enough to be in the public domain).
15
16
Notes about tsumego copyright:
17
http://www.strategicgenomics.com/Jared/Go/go_copyright_usenet.txt and
18
http://www.strategicgenomics.com/Jared/Go/go_copyright_mail.txt
19
are discussions of copyright law and how it applies to game records in
20
the US, Japan, and UK. To summarize, any tsumego that is taken from an
21
actual played game is not copyrightable; any tsumego composed separate
22
from a game is copyrightable. Of course, there's little to no case law
23
in this area, so this is subject to change.
24
++ uligo-0.3/debian/rules
Line 0 Link Here
0
-- uligo-0.3.orig/debian/uligo.def
1
#!/usr/bin/make -f
2
3
# This is the debhelper compatibility version to use.
4
export DH_COMPAT=4
5
6
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
7
	CFLAGS += -g
8
endif
9
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
10
	INSTALL_PROGRAM += -s
11
endif
12
13
configure: configure-stamp
14
configure-stamp:
15
	dh_testdir
16
	touch configure-stamp
17
18
build: build-stamp
19
20
build-stamp: configure-stamp 
21
	dh_testdir
22
	touch build-stamp
23
	uudecode -o debian/uligo.png debian/uligo.png.uu
24
25
clean:
26
	dh_testdir
27
	dh_testroot
28
	rm -f build-stamp configure-stamp debian/uligo.png
29
	dh_clean
30
31
install: build
32
	dh_testdir
33
	dh_testroot
34
	dh_clean -k
35
	dh_installdirs
36
	install -m 755 -D uligo.py debian/uligo/usr/share/games/uligo/uligo.py
37
	install -m 644 -D debian/uligo.png debian/uligo/usr/share/pixmaps/uligo.png
38
	install -m 644 -D debian/uligo-debian.xpm debian/uligo/usr/share/pixmaps/uligo-debian.xpm
39
	ln -s ../share/games/uligo/uligo.py debian/uligo/usr/games/uligo
40
	cp debian/uligo.def debian/uligo/usr/share/games/uligo
41
	cp gifs/*.gif debian/uligo/usr/share/games/uligo/gifs
42
	cp sgf/*.sgf debian/uligo/usr/share/games/uligo/sgf
43
	cp sgfparser.py clock.py board1.py uligo.app debian/uligo/usr/share/games/uligo
44
45
# Build architecture-independent files here.
46
binary-indep: build install
47
	dh_testdir
48
	dh_testroot
49
	dh_installdocs
50
	dh_installmenu
51
	dh_installman debian/uligo.6
52
	dh_installchangelogs 
53
	dh_link
54
	dh_compress
55
	dh_fixperms
56
	dh_installdeb
57
	dh_gencontrol
58
	dh_md5sums
59
	dh_builddeb
60
61
# Build architecture-dependent files here.
62
binary-arch: build install
63
64
binary: binary-indep binary-arch
65
.PHONY: build clean binary-indep binary-arch binary install configure
66
++ uligo-0.3/debian/uligo.def
Line 0 Link Here
0
-- uligo-0.3.orig/uligo.def
1
uligo03
2
i /tmp
3
++ uligo-0.3/uligo.def
Line 0 Link Here
1
uligo03
2
s /home/piman/projects/debian/uligo/new/uligo-0.3/sgf
3
f easy.sgf

Return to bug 498682