~ubuntu-branches/ubuntu/saucy/pyacidobasic/saucy

« back to all changes in this revision

Viewing changes to debian/patches/debian-changes-0.1-5

  • Committer: Bazaar Package Importer
  • Author(s): Georges Khaznadar
  • Date: 2010-08-15 19:34:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100815193400-ywmgp5v7hv0dhexm
Tags: 0.1-6
* fixed the versionless GPL reference
* upgraded Standards-Version to 3.9.1
* first release to Debian. Closes: #593135

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Upstream changes introduced in version 0.1-5
 
2
 This patch has been created by dpkg-source during the package build.
 
3
 Here's the last changelog entry, hopefully it gives details on why
 
4
 those changes were made:
 
5
 .
 
6
 pyacidobasic (0.1-5) unstable; urgency=low
 
7
 .
 
8
   * added export features in PDF, SVG, PNG files.
 
9
   * added the possibility to define a custom title
 
10
   * fixed the target install in Makefile, added a --prefix option to setup.py
 
11
   * added a sort ptocedure to build the list of chemicals
 
12
   * created a .desktop file and an icon for the application
 
13
   * fixed the newlines in the acid-base lists
 
14
 .
 
15
 The person named in the Author field signed this changelog entry.
 
16
Author: Georges Khaznadar <georgesk@ofset.org>
 
17
 
 
18
---
 
19
The information above should follow the Patch Tagging Guidelines, please
 
20
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
 
21
are templates for supplementary fields that you might want to add:
 
22
 
 
23
Origin: <vendor|upstream|other>, <url of original patch>
 
24
Bug: <url in upstream bugtracker>
 
25
Bug-Debian: http://bugs.debian.org/<bugnumber>
 
26
Forwarded: <no|not-needed|url proving that it has been forwarded>
 
27
Reviewed-By: <name and email of someone who approved the patch>
 
28
Last-Update: <YYYY-MM-DD>
 
29
 
 
30
--- pyacidobasic-0.1.orig/__init__.py
 
31
+++ pyacidobasic-0.1/__init__.py
 
32
@@ -74,6 +74,10 @@ class acidoBasicMainWindow(QMainWindow):
 
33
         QObject.connect(self.ui.toolButtonBecher,SIGNAL("clicked()"), self.videBecher)
 
34
         QObject.connect(self.ui.toolButtonPlusV,SIGNAL("clicked()"), self.plusV)
 
35
         QObject.connect(self.ui.toolButtonMoinsV,SIGNAL("clicked()"), self.moinsV)
 
36
+        QObject.connect(self.ui.PDFbutton,SIGNAL('clicked()'),self.ui.qwtPlotpH.exportPDF)
 
37
+        QObject.connect(self.ui.SVGbutton,SIGNAL('clicked()'),self.ui.qwtPlotpH.exportSVG)
 
38
+        QObject.connect(self.ui.JPGbutton,SIGNAL('clicked()'),self.ui.qwtPlotpH.exportJPG)
 
39
+        QObject.connect(self.ui.TitleButton,SIGNAL('clicked()'),self.ui.qwtPlotpH.newTitle)
 
40
 
 
41
     def configurePlot(self):
 
42
         self.ui.qwtPlotpH.setAxisScale(QwtPlot.yLeft,0,14)
 
43
--- pyacidobasic-0.1.orig/Makefile
 
44
+++ pyacidobasic-0.1/Makefile
 
45
@@ -16,7 +16,9 @@ clean:
 
46
        rm -rf build
 
47
 
 
48
 install:
 
49
-       python setup.py install --root $(DESTDIR)
 
50
+       python setup.py install --root $(DESTDIR) --prefix=/usr
 
51
+       mkdir -p $(DESTDIR)/usr/share/applications
 
52
+       cp pyacidobasic.desktop $(DESTDIR)/usr/share/applications
 
53
 
 
54
 languages:
 
55
        $(LRELEASE) lang/*.ts 2>/dev/null || lrelease lang/*.ts
 
56
@@ -28,7 +30,7 @@ helpfiles:
 
57
        @$(MAKE) -C help
 
58
 
 
59
 Ui_main.py: main.ui
 
60
-       pyuic4 $< | sed -e 's/^from qwt_plot/from PyQt4.Qwt5/' -e 's%\(icons/[a-zA-Z_0-9]*\.svg\)%/usr/share/$(PYPACKAGE)/\1%g' > $@
 
61
+       pyuic4 $< | sed -e 's/^from qwt_plot/from PyQt4.Qwt5/' -e 's%\(icons/[-:a-zA-Z_0-9]*\.svg\)%/usr/share/$(PYPACKAGE)/\1%g' > $@
 
62
 
 
63
 Ui_%.py: %.ui
 
64
        pyuic4 $< > $@
 
65
--- pyacidobasic-0.1.orig/main.ui
 
66
+++ pyacidobasic-0.1/main.ui
 
67
@@ -17,7 +17,11 @@
 
68
    </sizepolicy>
 
69
   </property>
 
70
   <property name="windowTitle">
 
71
-   <string>MainWindow</string>
 
72
+   <string>pyAcidoBasic</string>
 
73
+  </property>
 
74
+  <property name="windowIcon">
 
75
+   <iconset>
 
76
+    <normaloff>icons/pyacidobasic.svg</normaloff>icons/pyacidobasic.svg</iconset>
 
77
   </property>
 
78
   <widget class="QWidget" name="centralwidget">
 
79
    <property name="sizePolicy">
 
80
@@ -101,6 +105,9 @@
 
81
                 </property>
 
82
                 <item>
 
83
                  <widget class="QListWidget" name="listWidgetReactifs">
 
84
+                  <property name="toolTip">
 
85
+                   <string>Choisr un réactif et le tirer vers la burette ou le bécher</string>
 
86
+                  </property>
 
87
                   <property name="dragEnabled">
 
88
                    <bool>true</bool>
 
89
                   </property>
 
90
@@ -150,6 +157,9 @@
 
91
                 </property>
 
92
                 <item>
 
93
                  <widget class="QToolButton" name="toolButtonBurette">
 
94
+                  <property name="toolTip">
 
95
+                   <string>vider la burette pour la remplir à nouveau</string>
 
96
+                  </property>
 
97
                   <property name="text">
 
98
                    <string>...</string>
 
99
                   </property>
 
100
@@ -170,6 +180,9 @@
 
101
                   <property name="acceptDrops">
 
102
                    <bool>true</bool>
 
103
                   </property>
 
104
+                  <property name="toolTip">
 
105
+                   <string>tirer un réactif vers la burette</string>
 
106
+                  </property>
 
107
                   <property name="dragDropOverwriteMode">
 
108
                    <bool>true</bool>
 
109
                   </property>
 
110
@@ -201,6 +214,9 @@
 
111
                 </property>
 
112
                 <item>
 
113
                  <widget class="QToolButton" name="toolButtonBecher">
 
114
+                  <property name="toolTip">
 
115
+                   <string>vider le bécher pour la remplir à nouveau</string>
 
116
+                  </property>
 
117
                   <property name="text">
 
118
                    <string>...</string>
 
119
                   </property>
 
120
@@ -215,6 +231,9 @@
 
121
                   <property name="acceptDrops">
 
122
                    <bool>true</bool>
 
123
                   </property>
 
124
+                  <property name="toolTip">
 
125
+                   <string>tirer un ou plusieurs réactifs vers le bécher</string>
 
126
+                  </property>
 
127
                   <property name="dragEnabled">
 
128
                    <bool>false</bool>
 
129
                   </property>
 
130
@@ -276,7 +295,79 @@
 
131
                  </spacer>
 
132
                 </item>
 
133
                 <item>
 
134
+                 <widget class="QToolButton" name="PDFbutton">
 
135
+                  <property name="toolTip">
 
136
+                   <string>exporter au format PDF</string>
 
137
+                  </property>
 
138
+                  <property name="statusTip">
 
139
+                   <string/>
 
140
+                  </property>
 
141
+                  <property name="text">
 
142
+                   <string>...</string>
 
143
+                  </property>
 
144
+                  <property name="icon">
 
145
+                   <iconset>
 
146
+                    <normalon>icons/mime-application:pdf.svg</normalon>
 
147
+                   </iconset>
 
148
+                  </property>
 
149
+                 </widget>
 
150
+                </item>
 
151
+                <item>
 
152
+                 <widget class="QToolButton" name="SVGbutton">
 
153
+                  <property name="toolTip">
 
154
+                   <string>exporter au format SVG</string>
 
155
+                  </property>
 
156
+                  <property name="statusTip">
 
157
+                   <string/>
 
158
+                  </property>
 
159
+                  <property name="text">
 
160
+                   <string>...</string>
 
161
+                  </property>
 
162
+                  <property name="icon">
 
163
+                   <iconset>
 
164
+                    <normalon>icons/mime-image:svg.svg</normalon>
 
165
+                   </iconset>
 
166
+                  </property>
 
167
+                 </widget>
 
168
+                </item>
 
169
+                <item>
 
170
+                 <widget class="QToolButton" name="JPGbutton">
 
171
+                  <property name="toolTip">
 
172
+                   <string>exporter au format JPEG</string>
 
173
+                  </property>
 
174
+                  <property name="statusTip">
 
175
+                   <string/>
 
176
+                  </property>
 
177
+                  <property name="text">
 
178
+                   <string>...</string>
 
179
+                  </property>
 
180
+                  <property name="icon">
 
181
+                   <iconset>
 
182
+                    <normalon>icons/mime-image:jpeg.svg</normalon>
 
183
+                   </iconset>
 
184
+                  </property>
 
185
+                 </widget>
 
186
+                </item>
 
187
+                <item>
 
188
+                 <widget class="QToolButton" name="TitleButton">
 
189
+                  <property name="toolTip">
 
190
+                   <string>Définir le titre</string>
 
191
+                  </property>
 
192
+                  <property name="text">
 
193
+                   <string>...</string>
 
194
+                  </property>
 
195
+                  <property name="icon">
 
196
+                   <iconset>
 
197
+                    <normalon>icons/title.svg</normalon>
 
198
+                   </iconset>
 
199
+                  </property>
 
200
+                 </widget>
 
201
+                </item>
 
202
+                <item>
 
203
                  <widget class="QToolButton" name="toolButtonPlusV">
 
204
+                  <property name="toolTip">
 
205
+                   <string>augmenter l'intervalle des abscisses</string>
 
206
+                  </property>
 
207
                   <property name="text">
 
208
                    <string>...</string>
 
209
                   </property>
 
210
@@ -291,6 +382,9 @@
 
211
                 </item>
 
212
                 <item>
 
213
                  <widget class="QToolButton" name="toolButtonMoinsV">
 
214
+                  <property name="toolTip">
 
215
+                   <string>diminuer l'intervalle des abscisses</string>
 
216
+                  </property>
 
217
                   <property name="text">
 
218
                    <string>...</string>
 
219
                   </property>
 
220
--- pyacidobasic-0.1.orig/reactifs.py
 
221
+++ pyacidobasic-0.1/reactifs.py
 
222
@@ -21,9 +21,11 @@ licence="""
 
223
 """
 
224
 
 
225
 from PyQt4.QtCore import *
 
226
+from operator import attrgetter
 
227
 
 
228
 def setupUi(ui, listeAcidesBases):
 
229
-    for ab in listeAcidesBases:
 
230
+    l=sorted(listeAcidesBases,key=attrgetter('nom'))
 
231
+    for ab in l:
 
232
         ab.c=0.0 # on annule la concentration : elle est indéfinie
 
233
         ui.listWidgetReactifs.addItem(ab.nom)
 
234
         ui.listWidgetBecher.listeAcidesBases=listeAcidesBases
 
235
--- pyacidobasic-0.1.orig/acidebase.py
 
236
+++ pyacidobasic-0.1/acidebase.py
 
237
@@ -59,6 +59,8 @@ class abHTMLparser(HTMLParser):
 
238
                 self.liste.append(self.ab)
 
239
             self.ligne=False
 
240
         elif tag=="td":
 
241
+            #retire les retours à la ligne intempestifs
 
242
+            self.input = self.input.strip()
 
243
             if self.gotAb==0:
 
244
                 formes=self.input.split(',')
 
245
                 self.ab.formes=[]
 
246
--- pyacidobasic-0.1.orig/phPlot.py
 
247
+++ pyacidobasic-0.1/phPlot.py
 
248
@@ -1,3 +1,4 @@
 
249
+# -*- encoding: utf-8 -*-
 
250
 licence={}
 
251
 licence['en']="""
 
252
     phPLot.py
 
253
@@ -22,30 +23,81 @@ licence['en']="""
 
254
     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
255
 """
 
256
 
 
257
-import PyQt4.Qwt5, PyQt4.QtCore, PyQt4.QtGui
 
258
+from PyQt4 import QtGui, QtCore, Qwt5, QtSvg
 
259
+import re
 
260
 
 
261
-class phPlot(PyQt4.Qwt5.QwtPlot):
 
262
+class phPlot(Qwt5.QwtPlot):
 
263
     def __init__(self, parent=None):
 
264
-        PyQt4.Qwt5.QwtPlot.__init__(self,parent)
 
265
+        Qwt5.QwtPlot.__init__(self,parent)
 
266
         self.setMouseTracking(True)
 
267
         
 
268
-        self.picker = PyQt4.Qwt5.QwtPlotPicker(self.canvas())
 
269
-        self.picker.setRubberBand (PyQt4.Qwt5.QwtPlotPicker.PointSelection | PyQt4.Qwt5.QwtPicker.DragSelection)
 
270
-        self.picker.setTrackerMode(PyQt4.Qwt5.QwtPicker.AlwaysOn)
 
271
+        self.picker = Qwt5.QwtPlotPicker(self.canvas())
 
272
+        self.picker.setRubberBand (Qwt5.QwtPlotPicker.PointSelection | Qwt5.QwtPicker.DragSelection)
 
273
+        self.picker.setTrackerMode(Qwt5.QwtPicker.AlwaysOn)
 
274
         
 
275
-        self.marker = PyQt4.Qwt5.QwtPlotMarker()
 
276
-        self.marker.setLineStyle(PyQt4.Qwt5.QwtPlotMarker.VLine | PyQt4.Qwt5.QwtPlotMarker.HLine)
 
277
-        self.marker.setLabelAlignment(PyQt4.QtCore.Qt.AlignRight | 
 
278
-PyQt4.QtCore.Qt.AlignBottom)
 
279
-        self.marker.setLinePen(PyQt4.QtGui.QPen(PyQt4.QtCore.Qt.darkGray, 1, 
 
280
-PyQt4.QtCore.Qt.DashLine))
 
281
+        self.marker = Qwt5.QwtPlotMarker()
 
282
+        self.marker.setLineStyle(Qwt5.QwtPlotMarker.VLine | Qwt5.QwtPlotMarker.HLine)
 
283
+        self.marker.setLabelAlignment(QtCore.Qt.AlignRight | 
 
284
+QtCore.Qt.AlignBottom)
 
285
+        self.marker.setLinePen(QtGui.QPen(QtCore.Qt.darkGray, 1, 
 
286
+QtCore.Qt.DashLine))
 
287
         #self.marker.setSymbol(QwtSymbol.XCross)
 
288
         self.marker.setValue(1.0, 0.0)
 
289
         self.marker.attach(self)
 
290
 
 
291
+        self.exportNo=1
 
292
+
 
293
     def mouseMoveEvent(self, e):
 
294
         canvasPos = self.canvas().mapFrom(self, e.pos())
 
295
-        xFloat = self.invTransform(PyQt4.Qwt5.QwtPlot.xBottom, canvasPos.x())
 
296
-        yFloat = self.invTransform(PyQt4.Qwt5.QwtPlot.yLeft, canvasPos.y())
 
297
+        xFloat = self.invTransform(Qwt5.QwtPlot.xBottom, canvasPos.x())
 
298
+        yFloat = self.invTransform(Qwt5.QwtPlot.yLeft, canvasPos.y())
 
299
         self.marker.setValue(xFloat, yFloat)
 
300
         self.replot()
 
301
+
 
302
+    def getFileName(self, fichier, ext, filtre):
 
303
+        """
 
304
+        Renvoie un nom de fichier à ouvrir pour un enregistrement
 
305
+        @param fichier une proposition initiale pour le nom du fichier
 
306
+        @param nb numero à inscrire dans le nom de fichier
 
307
+        @param ext extension du nom de fichier
 
308
+        @param filtre filtre les noms de fichiers visibles
 
309
+        @result le nom du fichier choisi
 
310
+        """
 
311
+        msg=u'Nom du fichier à exporter'
 
312
+        fichier="%s%03d.%s" %(fichier, self.exportNo, ext)
 
313
+        fichier= QtGui.QFileDialog.getSaveFileName(self,msg,fichier,filtre)
 
314
+        try:
 
315
+            self.exportNo=int(re.compile('.*([0-9]).*').match(fichier).group(1))+1
 
316
+        except:
 
317
+            self.exportNo=1
 
318
+        return fichier
 
319
+
 
320
+    def exportSVG(self):
 
321
+        fileName = self.getFileName('graphe', 'svg', 'Documents SVG (*.svg)')
 
322
+        if not fileName.isEmpty():
 
323
+            generator = QtSvg.QSvgGenerator()
 
324
+            generator.setFileName(fileName)
 
325
+            generator.setSize(QtCore.QSize(800, 600))
 
326
+            self.print_(generator)
 
327
 
328
+    def exportPDF(self):
 
329
+        fileName = self.getFileName('graphe', 'pdf', 'Documents PDF (*.pdf)')
 
330
+        if not fileName.isEmpty():
 
331
+            printer = QtGui.QPrinter()
 
332
+            printer.setOutputFormat(QtGui.QPrinter.PdfFormat)
 
333
+            printer.setOrientation(QtGui.QPrinter.Landscape)
 
334
+            printer.setOutputFileName(fileName)
 
335
 
336
+            printer.setCreator('PDF example')
 
337
+            self.print_(printer)
 
338
+            
 
339
+    def exportJPG(self):
 
340
+        fileName = self.getFileName('graphe', 'jpg', 'Images JPEG (*.jpg)')
 
341
+        if not fileName.isEmpty():
 
342
+            QtGui.QPixmap.grabWidget(self).save(fileName, 'JPG')
 
343
+
 
344
+    def newTitle(self):
 
345
+        title = QtGui.QInputDialog.getText(self, u"Titre",
 
346
+                        u"Indiquer le titre à afficher sur le graphique")
 
347
+        if title[1]:
 
348
+            self.setTitle(title[0])
 
349
--- pyacidobasic-0.1.orig/acides-bases.html
 
350
+++ pyacidobasic-0.1/acides-bases.html
 
351
@@ -1,11 +1,8 @@
 
352
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 
353
 <html><head>
 
354
-  
 
355
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
356
-  <title>Liste d'acides et de bases pour PyAcidoBasic</title>
 
357
 
 
358
   
 
359
-</head><body>
 
360
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Liste d'acides et de bases pour PyAcidoBasic</title></head><body>
 
361
 <h1>Liste d'acides et de bases pour PyAcidoBasic</h1>
 
362
 
 
363
 ce tableau peut être complété à l'aide d'un éditeur HTML, comme
 
364
@@ -82,7 +79,7 @@ Na<sup>+</sup>,Na<sub>2</sub>HPO<sub>4</
 
365
       <td>0</td>
 
366
     </tr>
 
367
     <tr>
 
368
-      <td>NH<sub>4+</sub>,NH3</td>
 
369
+      <td>NH<sub>4</sub><sup>+</sup>,NH<sub>3</sub></td>
 
370
       <td>1</td>
 
371
       <td>ammoniac</td>
 
372
       <td>9.20</td>
 
373
@@ -104,8 +101,274 @@ Na<sup>+</sup>,Na<sub>2</sub>HPO<sub>4</
 
374
       <td>17.0</td>
 
375
       <td>1.0</td>
 
376
       <td>1</td>
 
377
+    </tr><tr>
 
378
+      <td style="vertical-align: top;">HNO<sub>3</sub>,NO<sub>3</sub><sup>-</sup></td>
 
379
+      <td style="vertical-align: top;">0
 
380
+      </td>
 
381
+      <td style="vertical-align: top;">acide nitrique
 
382
+      </td>
 
383
+      <td style="vertical-align: top;">-2.0
 
384
+      </td>
 
385
+      <td style="vertical-align: top;">1.0
 
386
+      </td>
 
387
+      <td style="vertical-align: top;">0
 
388
+      </td>
 
389
+    </tr>
 
390
+    <tr>
 
391
+      <td style="vertical-align: top;">HBr,Br<sup>-</sup>
 
392
+      </td>
 
393
+      <td style="vertical-align: top;">0
 
394
+      </td>
 
395
+      <td style="vertical-align: top;">acide bromhydrique
 
396
+      </td>
 
397
+      <td style="vertical-align: top;">-8.0
 
398
+      </td>
 
399
+      <td style="vertical-align: top;">1.0
 
400
+      </td>
 
401
+      <td style="vertical-align: top;">0
 
402
+      </td>
 
403
+    </tr>
 
404
+    <tr>
 
405
+      <td style="vertical-align: top;">HI,I<sup>-</sup>
 
406
+      </td>
 
407
+      <td style="vertical-align: top;">0
 
408
+      </td>
 
409
+      <td style="vertical-align: top;">acide iodhydrique
 
410
+      </td>
 
411
+      <td style="vertical-align: top;">-10
 
412
+      </td>
 
413
+      <td style="vertical-align: top;">1.0
 
414
+      </td>
 
415
+      <td style="vertical-align: top;">0
 
416
+      </td>
 
417
+    </tr>
 
418
+    <tr>
 
419
+      <td style="vertical-align: top;">H<sub>2</sub>SO<sub>4</sub>,HSO<sub>4</sub><sup>-</sup>,SO<sub>4</sub><sup>2-</sup>
 
420
+      </td>
 
421
+      <td style="vertical-align: top;">0
 
422
+      </td>
 
423
+      <td style="vertical-align: top;">acide sulfurique</td>
 
424
+      <td style="vertical-align: top;">-7.0,1.99
 
425
+      </td>
 
426
+      <td style="vertical-align: top;">1.0
 
427
+      </td>
 
428
+      <td style="vertical-align: top;">0
 
429
+      </td>
 
430
+    </tr>
 
431
+    <tr>
 
432
+      <td style="vertical-align: top;">NaHSO<sub>4</sub>,SO<sub>4</sub><sup>2-</sup>Na<sup>+</sup></td>
 
433
+      <td style="vertical-align: top;">0
 
434
+      </td>
 
435
+      <td style="vertical-align: top;">hydrogénosulfate de sodium</td>
 
436
+      <td style="vertical-align: top;">1.99
 
437
+      </td>
 
438
+      <td style="vertical-align: top;">1.0
 
439
+      </td>
 
440
+      <td style="vertical-align: top;">1
 
441
+      </td>
 
442
+    </tr>
 
443
+    <tr>
 
444
+      <td style="vertical-align: top;">HCOOH,HCOO<sup>-</sup></td>
 
445
+      <td style="vertical-align: top;">0
 
446
+      </td>
 
447
+      <td style="vertical-align: top;">acide méthanoïque</td>
 
448
+      <td style="vertical-align: top;">3.77
 
449
+      </td>
 
450
+      <td style="vertical-align: top;">1.0</td>
 
451
+      <td style="vertical-align: top;">0
 
452
+      </td>
 
453
+    </tr>
 
454
+    <tr>
 
455
+      <td style="vertical-align: top;">HCOOHNa<sup>+</sup>,HCOONa</td>
 
456
+      <td style="vertical-align: top;">1
 
457
+      </td>
 
458
+      <td style="vertical-align: top;">méthanoate de sodium
 
459
+      </td>
 
460
+      <td style="vertical-align: top;">3.77
 
461
+      </td>
 
462
+      <td style="vertical-align: top;">1.0</td>
 
463
+      <td style="vertical-align: top;">1
 
464
+      </td>
 
465
+    </tr>
 
466
+    <tr>
 
467
+      <td style="vertical-align: top;">C<sub>7</sub>H<sub>6</sub>O<sub>3</sub>,C<sub>7</sub>H<sub>5</sub>O<sub>3</sub><sup>-</sup></td>
 
468
+      <td style="vertical-align: top;">0
 
469
+      </td>
 
470
+      <td style="vertical-align: top;">acide salicylique
 
471
+      </td>
 
472
+      <td style="vertical-align: top;">3.0
 
473
+      </td>
 
474
+      <td style="vertical-align: top;">1.0</td>
 
475
+      <td style="vertical-align: top;">0
 
476
+      </td>
 
477
+    </tr>
 
478
+    <tr>
 
479
+      <td style="vertical-align: top;">C<sub>7</sub>H<sub>6</sub>O<sub>3</sub>Na+,C<sub>7</sub>H<sub>5</sub>O<sub>3</sub>Na</td>
 
480
+      <td style="vertical-align: top;">1
 
481
+      </td>
 
482
+      <td style="vertical-align: top;">salicylate de sodium
 
483
+      </td>
 
484
+      <td style="vertical-align: top;">3.0
 
485
+      </td>
 
486
+      <td style="vertical-align: top;">1.0</td>
 
487
+      <td style="vertical-align: top;">1
 
488
+      </td>
 
489
+    </tr>
 
490
+    <tr>
 
491
+      <td style="vertical-align: top;">C<sub>7</sub>H<sub>6</sub>0<sub>2</sub>,C<sub>7</sub>H<sub>5</sub>0<sub>2</sub><sup>-</sup>
 
492
+      </td>
 
493
+      <td style="vertical-align: top;">0
 
494
+      </td>
 
495
+      <td style="vertical-align: top;">acide benzoïque
 
496
+      </td>
 
497
+      <td style="vertical-align: top;">4.19
 
498
+      </td>
 
499
+      <td style="vertical-align: top;">1.0
 
500
+      </td>
 
501
+      <td style="vertical-align: top;">0
 
502
+      </td>
 
503
+    </tr>
 
504
+    <tr>
 
505
+      <td style="vertical-align: top;">C<sub>7</sub>H<sub>6</sub>0<sub>2</sub>Na<sup>+</sup>,C<sub>7</sub>H<sub>5</sub>0<sub>2</sub>Na</td>
 
506
+      <td style="vertical-align: top;">1
 
507
+      </td>
 
508
+      <td style="vertical-align: top;">benzoate de sodium
 
509
+      </td>
 
510
+      <td style="vertical-align: top;">4.19
 
511
+      </td>
 
512
+      <td style="vertical-align: top;">1.0
 
513
+      </td>
 
514
+      <td style="vertical-align: top;">1
 
515
+      </td>
 
516
+    </tr>
 
517
+    <tr>
 
518
+      <td style="vertical-align: top;">C<sub>3</sub>H<sub>6</sub>O<sub>2</sub>,C<sub>3</sub>H<sub>5</sub>O<sub>2</sub><sup>-</sup></td>
 
519
+      <td style="vertical-align: top;">0
 
520
+      </td>
 
521
+      <td style="vertical-align: top;">acide propanoïque
 
522
+      </td>
 
523
+      <td style="vertical-align: top;">4.87
 
524
+      </td>
 
525
+      <td style="vertical-align: top;">1.0</td>
 
526
+      <td style="vertical-align: top;">0
 
527
+      </td>
 
528
+    </tr>
 
529
+    <tr>
 
530
+      <td style="vertical-align: top;">C<sub>3</sub>H<sub>6</sub>O<sub>2</sub>Na<sup>+</sup>,C<sub>3</sub>H<sub>5</sub>O<sub>2</sub>Na</td>
 
531
+      <td style="vertical-align: top;">1
 
532
+      </td>
 
533
+      <td style="vertical-align: top;">propanoate de sodium
 
534
+      </td>
 
535
+      <td style="vertical-align: top;">4.87
 
536
+      </td>
 
537
+      <td style="vertical-align: top;">1.0</td>
 
538
+      <td style="vertical-align: top;">1
 
539
+      </td>
 
540
+    </tr>
 
541
+    <tr>
 
542
+      <td style="vertical-align: top;">C<sub>4</sub>H<sub>8</sub>O<sub>2</sub>,C<sub>4</sub>H<sub>7</sub>O<sub>2</sub><sup>-</sup></td>
 
543
+      <td style="vertical-align: top;">0
 
544
+      </td>
 
545
+      <td style="vertical-align: top;">acide butanoïque
 
546
+      </td>
 
547
+      <td style="vertical-align: top;">4.81
 
548
+      </td>
 
549
+      <td style="vertical-align: top;">1.0</td>
 
550
+      <td style="vertical-align: top;">0
 
551
+      </td>
 
552
+    </tr>
 
553
+    <tr>
 
554
+      <td style="vertical-align: top;">C<sub>4</sub>H<sub>8</sub>O<sub>2</sub>Na<sup>+</sup>,C<sub>4</sub>H<sub>7</sub>O<sub>2</sub>Na</td>
 
555
+      <td style="vertical-align: top;">1
 
556
+      </td>
 
557
+      <td style="vertical-align: top;">butanoate de sodium
 
558
+      </td>
 
559
+      <td style="vertical-align: top;">4.81
 
560
+      </td>
 
561
+      <td style="vertical-align: top;">1.0</td>
 
562
+      <td style="vertical-align: top;">1
 
563
+      </td>
 
564
+    </tr>
 
565
+    <tr>
 
566
+      <td style="vertical-align: top;">HClO,ClO<sup>-</sup>
 
567
+      </td>
 
568
+      <td style="vertical-align: top;">0
 
569
+      </td>
 
570
+      <td style="vertical-align: top;">acide hypochloreux
 
571
+      </td>
 
572
+      <td style="vertical-align: top;">7.52
 
573
+      </td>
 
574
+      <td style="vertical-align: top;">1.0</td>
 
575
+      <td style="vertical-align: top;">0
 
576
+      </td>
 
577
+    </tr>
 
578
+    <tr>
 
579
+      <td style="vertical-align: top;">HClONa<sup>+</sup>,NaClO
 
580
+      </td>
 
581
+      <td style="vertical-align: top;">1
 
582
+      </td>
 
583
+      <td style="vertical-align: top;">hypochlorite de sodium
 
584
+      </td>
 
585
+      <td style="vertical-align: top;">7.52
 
586
+      </td>
 
587
+      <td style="vertical-align: top;">1.0</td>
 
588
+      <td style="vertical-align: top;">1
 
589
+      </td>
 
590
+    </tr>
 
591
+    <tr>
 
592
+      <td style="vertical-align: top;">HCN,CN<sup>-</sup>
 
593
+      </td>
 
594
+      <td style="vertical-align: top;">0
 
595
+      </td>
 
596
+      <td style="vertical-align: top;">acide cyanhydrique
 
597
+      </td>
 
598
+      <td style="vertical-align: top;">9.3
 
599
+      </td>
 
600
+      <td style="vertical-align: top;">1.0</td>
 
601
+      <td style="vertical-align: top;">0
 
602
+      </td>
 
603
+    </tr>
 
604
+    <tr>
 
605
+      <td style="vertical-align: top;">HCNNa<sup>+</sup>,NaCN</td>
 
606
+      <td style="vertical-align: top;">1
 
607
+      </td>
 
608
+      <td style="vertical-align: top;">cyanure de sodium
 
609
+      </td>
 
610
+      <td style="vertical-align: top;">9.3
 
611
+      </td>
 
612
+      <td style="vertical-align: top;">1.0
 
613
+      </td>
 
614
+      <td style="vertical-align: top;">1
 
615
+      </td>
 
616
+    </tr>
 
617
+    <tr>
 
618
+      <td style="vertical-align: top;">C<sub>6</sub>H<sub>6</sub>0,C<sub>6</sub>H<sub>5</sub>O<sup>-</sup>
 
619
+      </td>
 
620
+      <td style="vertical-align: top;">0
 
621
+      </td>
 
622
+      <td style="vertical-align: top;">phénol
 
623
+      </td>
 
624
+      <td style="vertical-align: top;">9.95
 
625
+      </td>
 
626
+      <td style="vertical-align: top;">1.0</td>
 
627
+      <td style="vertical-align: top;">0
 
628
+      </td>
 
629
+    </tr>
 
630
+    <tr>
 
631
+      <td style="vertical-align: top;">C<sub>6</sub>H<sub>6</sub>ONa<sup>+</sup>,C<sub>6</sub>H<sub>5</sub>ONa
 
632
+      </td>
 
633
+      <td style="vertical-align: top;">1
 
634
+      </td>
 
635
+      <td style="vertical-align: top;">phénolate de sodium
 
636
+      </td>
 
637
+      <td style="vertical-align: top;">9.95
 
638
+      </td>
 
639
+      <td style="vertical-align: top;">1.0</td>
 
640
+      <td style="vertical-align: top;">1
 
641
+      </td>
 
642
     </tr>
 
643
+
 
644
   </tbody>
 
645
 </table>
 
646
 
 
647
-</body></html>
 
648
\ No newline at end of file
 
649
+</body></html>
 
650
--- /dev/null
 
651
+++ pyacidobasic-0.1/pyacidobasic.desktop
 
652
@@ -0,0 +1,13 @@
 
653
+[Desktop Entry]
 
654
+Encoding=UTF-8
 
655
+Version=1.0
 
656
+Type=Application
 
657
+Exec=/usr/bin/pyacidobasic
 
658
+Icon=/usr/share/pyacidobasic/icons/pyacidobasic.svg
 
659
+Terminal=false
 
660
+Name=pyAcidoBasic
 
661
+GenericName=Acid/base titration
 
662
+GenericName[fr_FR]=Titrages acides/bases
 
663
+Comment=Interactive tool to simulate acido-basic titrations
 
664
+Comment[fr_FR]=Outil interactif pour simuler des titrages acido-basiques
 
665
+Categories=GNOME;Application;Video;Education;Science;
 
666
--- /dev/null
 
667
+++ pyacidobasic-0.1/icons/mime-image:svg.svg
 
668
@@ -0,0 +1,652 @@
 
669
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
670
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
 
671
+<svg
 
672
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
 
673
+   xmlns:cc="http://web.resource.org/cc/"
 
674
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
675
+   xmlns:svg="http://www.w3.org/2000/svg"
 
676
+   xmlns="http://www.w3.org/2000/svg"
 
677
+   xmlns:xlink="http://www.w3.org/1999/xlink"
 
678
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
 
679
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 
680
+   id="svg1"
 
681
+   sodipodi:version="0.32"
 
682
+   inkscape:version="0.41"
 
683
+   width="128.00000pt"
 
684
+   height="128.00000pt"
 
685
+   sodipodi:docbase="/home/francois/Rodent/scalable/mimetypes"
 
686
+   sodipodi:docname="gnome-mime-image-svg.svg">
 
687
+  <metadata
 
688
+     id="metadata15">
 
689
+    <rdf:RDF
 
690
+       id="RDF17">
 
691
+      <cc:Work
 
692
+         rdf:about=""
 
693
+         id="Work19">
 
694
+        <dc:format
 
695
+           id="format21">image/svg+xml</dc:format>
 
696
+        <dc:type
 
697
+           id="type23"
 
698
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
699
+      </cc:Work>
 
700
+    </rdf:RDF>
 
701
+  </metadata>
 
702
+  <defs
 
703
+     id="defs3">
 
704
+    <linearGradient
 
705
+       id="linearGradient3587">
 
706
+      <stop
 
707
+         id="stop3589"
 
708
+         offset="0.0000000"
 
709
+         style="stop-color:#efe0cd;stop-opacity:0.56097561;" />
 
710
+      <stop
 
711
+         id="stop3591"
 
712
+         offset="1.0000000"
 
713
+         style="stop-color:#cececd;stop-opacity:0.21951219;" />
 
714
+    </linearGradient>
 
715
+    <linearGradient
 
716
+       id="linearGradient2832">
 
717
+      <stop
 
718
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
 
719
+         offset="0.0000000"
 
720
+         id="stop2834" />
 
721
+      <stop
 
722
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
 
723
+         offset="1.0000000"
 
724
+         id="stop2836" />
 
725
+    </linearGradient>
 
726
+    <linearGradient
 
727
+       id="linearGradient839">
 
728
+      <stop
 
729
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
730
+         offset="0.0000000"
 
731
+         id="stop840" />
 
732
+      <stop
 
733
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
734
+         offset="0.39364964"
 
735
+         id="stop841" />
 
736
+      <stop
 
737
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
738
+         offset="0.72036445"
 
739
+         id="stop842" />
 
740
+      <stop
 
741
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
742
+         offset="1.0000000"
 
743
+         id="stop843" />
 
744
+    </linearGradient>
 
745
+    <linearGradient
 
746
+       gradientUnits="userSpaceOnUse"
 
747
+       gradientTransform="scale(1.353569,0.738788)"
 
748
+       xlink:href="#linearGradient839"
 
749
+       id="linearGradient836"
 
750
+       x1="12.230590"
 
751
+       y1="84.034923"
 
752
+       x2="107.81382"
 
753
+       y2="84.034923" />
 
754
+    <linearGradient
 
755
+       inkscape:collect="always"
 
756
+       xlink:href="#linearGradient2832"
 
757
+       id="linearGradient2830"
 
758
+       gradientTransform="matrix(0.939922,0.000000,0.000000,0.896911,4.950743,6.511692)"
 
759
+       x1="23.983805"
 
760
+       y1="16.369013"
 
761
+       x2="72.999245"
 
762
+       y2="73.398720"
 
763
+       gradientUnits="userSpaceOnUse" />
 
764
+    <linearGradient
 
765
+       y2="93.732185"
 
766
+       x2="107.31592"
 
767
+       y1="124.28045"
 
768
+       x1="111.32588"
 
769
+       gradientTransform="matrix(0.777129,0.000000,0.000000,0.894628,-162.4688,12.76856)"
 
770
+       gradientUnits="userSpaceOnUse"
 
771
+       id="linearGradient1407"
 
772
+       xlink:href="#linearGradient1700"
 
773
+       inkscape:collect="always" />
 
774
+    <linearGradient
 
775
+       y2="93.732185"
 
776
+       x2="107.31592"
 
777
+       y1="124.28045"
 
778
+       x1="111.32588"
 
779
+       gradientTransform="matrix(0.777129,0.000000,0.000000,0.894628,-2.922179,10.43077)"
 
780
+       gradientUnits="userSpaceOnUse"
 
781
+       id="linearGradient1390"
 
782
+       xlink:href="#linearGradient1700"
 
783
+       inkscape:collect="always" />
 
784
+    <linearGradient
 
785
+       id="linearGradient1350">
 
786
+      <stop
 
787
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
788
+         offset="0.0000000"
 
789
+         id="stop1352" />
 
790
+      <stop
 
791
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
792
+         offset="0.39364964"
 
793
+         id="stop1354" />
 
794
+      <stop
 
795
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
796
+         offset="0.72036445"
 
797
+         id="stop1356" />
 
798
+      <stop
 
799
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
800
+         offset="1.0000000"
 
801
+         id="stop1358" />
 
802
+    </linearGradient>
 
803
+    <linearGradient
 
804
+       xlink:href="#linearGradient839"
 
805
+       id="linearGradient1360"
 
806
+       x1="1.3267924e-17"
 
807
+       y1="0.50000000"
 
808
+       x2="1.0000000"
 
809
+       y2="0.50000000" />
 
810
+    <linearGradient
 
811
+       inkscape:collect="always"
 
812
+       xlink:href="#linearGradient1700"
 
813
+       id="linearGradient1362"
 
814
+       gradientTransform="matrix(0.870364,0.000000,0.000000,1.001961,4.612015,4.886798)"
 
815
+       x1="123.50353"
 
816
+       y1="121.73159"
 
817
+       x2="128.66997"
 
818
+       y2="87.980263"
 
819
+       gradientUnits="userSpaceOnUse" />
 
820
+    <linearGradient
 
821
+       xlink:href="#linearGradient839"
 
822
+       id="linearGradient1363"
 
823
+       x1="1.3267924e-17"
 
824
+       y1="0.50000000"
 
825
+       x2="1.0000000"
 
826
+       y2="0.50000000" />
 
827
+    <linearGradient
 
828
+       id="linearGradient1353">
 
829
+      <stop
 
830
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
831
+         offset="0.0000000"
 
832
+         id="stop1355" />
 
833
+      <stop
 
834
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
835
+         offset="0.39364964"
 
836
+         id="stop1357" />
 
837
+      <stop
 
838
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
839
+         offset="0.72036445"
 
840
+         id="stop1359" />
 
841
+      <stop
 
842
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
843
+         offset="1.0000000"
 
844
+         id="stop1361" />
 
845
+    </linearGradient>
 
846
+    <linearGradient
 
847
+       id="linearGradient1700">
 
848
+      <stop
 
849
+         style="stop-color:#000000;stop-opacity:0.69918698;"
 
850
+         offset="0.0000000"
 
851
+         id="stop1701" />
 
852
+      <stop
 
853
+         style="stop-color:#000000;stop-opacity:0;"
 
854
+         offset="1"
 
855
+         id="stop1702" />
 
856
+    </linearGradient>
 
857
+    <linearGradient
 
858
+       y2="0.50000000"
 
859
+       x2="1.0000000"
 
860
+       y1="0.50000000"
 
861
+       x1="1.3267924e-17"
 
862
+       id="linearGradient1427"
 
863
+       xlink:href="#linearGradient839" />
 
864
+    <linearGradient
 
865
+       id="linearGradient1417">
 
866
+      <stop
 
867
+         id="stop1419"
 
868
+         offset="0.0000000"
 
869
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
870
+      <stop
 
871
+         id="stop1421"
 
872
+         offset="0.39364964"
 
873
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
874
+      <stop
 
875
+         id="stop1423"
 
876
+         offset="0.72036445"
 
877
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
878
+      <stop
 
879
+         id="stop1425"
 
880
+         offset="1.0000000"
 
881
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
882
+    </linearGradient>
 
883
+    <linearGradient
 
884
+       xlink:href="#linearGradient839"
 
885
+       id="linearGradient1381"
 
886
+       x1="1.3267924e-17"
 
887
+       y1="0.50000000"
 
888
+       x2="1.0000000"
 
889
+       y2="0.50000000" />
 
890
+    <linearGradient
 
891
+       id="linearGradient1371">
 
892
+      <stop
 
893
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
894
+         offset="0.0000000"
 
895
+         id="stop1373" />
 
896
+      <stop
 
897
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
898
+         offset="0.39364964"
 
899
+         id="stop1375" />
 
900
+      <stop
 
901
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
902
+         offset="0.72036445"
 
903
+         id="stop1377" />
 
904
+      <stop
 
905
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
906
+         offset="1.0000000"
 
907
+         id="stop1379" />
 
908
+    </linearGradient>
 
909
+    <linearGradient
 
910
+       y2="0.50000000"
 
911
+       x2="1.0000000"
 
912
+       y1="0.50000000"
 
913
+       x1="1.3267924e-17"
 
914
+       id="linearGradient1374"
 
915
+       xlink:href="#linearGradient839" />
 
916
+    <linearGradient
 
917
+       id="linearGradient1364">
 
918
+      <stop
 
919
+         id="stop1366"
 
920
+         offset="0.0000000"
 
921
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
922
+      <stop
 
923
+         id="stop1368"
 
924
+         offset="0.39364964"
 
925
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
926
+      <stop
 
927
+         id="stop1370"
 
928
+         offset="0.72036445"
 
929
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
930
+      <stop
 
931
+         id="stop1372"
 
932
+         offset="1.0000000"
 
933
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
934
+    </linearGradient>
 
935
+    <linearGradient
 
936
+       y2="0.50000000"
 
937
+       x2="1.0000000"
 
938
+       y1="0.50000000"
 
939
+       x1="1.3267924e-17"
 
940
+       id="linearGradient1389"
 
941
+       xlink:href="#linearGradient839" />
 
942
+    <linearGradient
 
943
+       id="linearGradient833">
 
944
+      <stop
 
945
+         id="stop834"
 
946
+         offset="0.0000000"
 
947
+         style="stop-color:#00ff00;stop-opacity:1.0000000;" />
 
948
+      <stop
 
949
+         id="stop837"
 
950
+         offset="0.30839416"
 
951
+         style="stop-color:#ff0000;stop-opacity:1.0000000;" />
 
952
+      <stop
 
953
+         id="stop838"
 
954
+         offset="0.75000000"
 
955
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;" />
 
956
+      <stop
 
957
+         id="stop835"
 
958
+         offset="1.0000000"
 
959
+         style="stop-color:#ffff00;stop-opacity:1.0000000;" />
 
960
+    </linearGradient>
 
961
+    <linearGradient
 
962
+       id="linearGradient1373">
 
963
+      <stop
 
964
+         id="stop1376"
 
965
+         offset="0.0000000"
 
966
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
967
+      <stop
 
968
+         id="stop1378"
 
969
+         offset="0.39364964"
 
970
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
971
+      <stop
 
972
+         id="stop1380"
 
973
+         offset="0.72036445"
 
974
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
975
+      <stop
 
976
+         id="stop1382"
 
977
+         offset="1.0000000"
 
978
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
979
+    </linearGradient>
 
980
+    <linearGradient
 
981
+       y2="84.034923"
 
982
+       x2="107.81382"
 
983
+       y1="84.034923"
 
984
+       x1="12.230590"
 
985
+       gradientTransform="matrix(1.222575,0.000000,0.000000,0.738788,6.379309,2.121523)"
 
986
+       gradientUnits="userSpaceOnUse"
 
987
+       id="linearGradient1401"
 
988
+       xlink:href="#linearGradient839"
 
989
+       inkscape:collect="always" />
 
990
+    <linearGradient
 
991
+       y2="0.50000000"
 
992
+       x2="1.0000000"
 
993
+       y1="0.50000000"
 
994
+       x1="1.3267924e-17"
 
995
+       id="linearGradient2974"
 
996
+       xlink:href="#linearGradient839" />
 
997
+    <linearGradient
 
998
+       id="linearGradient2964">
 
999
+      <stop
 
1000
+         id="stop2966"
 
1001
+         offset="0.0000000"
 
1002
+         style="stop-color:#00ff00;stop-opacity:1.0000000;" />
 
1003
+      <stop
 
1004
+         id="stop2968"
 
1005
+         offset="0.30839416"
 
1006
+         style="stop-color:#ff0000;stop-opacity:1.0000000;" />
 
1007
+      <stop
 
1008
+         id="stop2970"
 
1009
+         offset="0.75000000"
 
1010
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;" />
 
1011
+      <stop
 
1012
+         id="stop2972"
 
1013
+         offset="1.0000000"
 
1014
+         style="stop-color:#ffff00;stop-opacity:1.0000000;" />
 
1015
+    </linearGradient>
 
1016
+    <linearGradient
 
1017
+       id="linearGradient2954">
 
1018
+      <stop
 
1019
+         id="stop2956"
 
1020
+         offset="0.0000000"
 
1021
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1022
+      <stop
 
1023
+         id="stop2958"
 
1024
+         offset="0.39364964"
 
1025
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1026
+      <stop
 
1027
+         id="stop2960"
 
1028
+         offset="0.72036445"
 
1029
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1030
+      <stop
 
1031
+         id="stop2962"
 
1032
+         offset="1.0000000"
 
1033
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1034
+    </linearGradient>
 
1035
+    <linearGradient
 
1036
+       y2="84.034923"
 
1037
+       x2="107.81382"
 
1038
+       y1="84.034923"
 
1039
+       x1="12.230590"
 
1040
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-182.1667,-25.68190)"
 
1041
+       gradientUnits="userSpaceOnUse"
 
1042
+       id="linearGradient2987"
 
1043
+       xlink:href="#linearGradient839"
 
1044
+       inkscape:collect="always" />
 
1045
+    <linearGradient
 
1046
+       xlink:href="#linearGradient839"
 
1047
+       id="linearGradient1418"
 
1048
+       x1="1.3267924e-17"
 
1049
+       y1="0.50000000"
 
1050
+       x2="1.0000000"
 
1051
+       y2="0.50000000" />
 
1052
+    <linearGradient
 
1053
+       id="linearGradient1408">
 
1054
+      <stop
 
1055
+         style="stop-color:#00ff00;stop-opacity:1.0000000;"
 
1056
+         offset="0.0000000"
 
1057
+         id="stop1410" />
 
1058
+      <stop
 
1059
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
 
1060
+         offset="0.30839416"
 
1061
+         id="stop1412" />
 
1062
+      <stop
 
1063
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;"
 
1064
+         offset="0.75000000"
 
1065
+         id="stop1414" />
 
1066
+      <stop
 
1067
+         style="stop-color:#ffff00;stop-opacity:1.0000000;"
 
1068
+         offset="1.0000000"
 
1069
+         id="stop1416" />
 
1070
+    </linearGradient>
 
1071
+    <linearGradient
 
1072
+       id="linearGradient1397">
 
1073
+      <stop
 
1074
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1075
+         offset="0.0000000"
 
1076
+         id="stop1399" />
 
1077
+      <stop
 
1078
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1079
+         offset="0.39364964"
 
1080
+         id="stop1401" />
 
1081
+      <stop
 
1082
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1083
+         offset="0.72036445"
 
1084
+         id="stop1403" />
 
1085
+      <stop
 
1086
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1087
+         offset="1.0000000"
 
1088
+         id="stop1405" />
 
1089
+    </linearGradient>
 
1090
+    <linearGradient
 
1091
+       inkscape:collect="always"
 
1092
+       xlink:href="#linearGradient839"
 
1093
+       id="linearGradient1431"
 
1094
+       gradientUnits="userSpaceOnUse"
 
1095
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-194.7091,-13.83491)"
 
1096
+       x1="12.230590"
 
1097
+       y1="84.034923"
 
1098
+       x2="107.81382"
 
1099
+       y2="84.034923" />
 
1100
+    <linearGradient
 
1101
+       y2="0.50000000"
 
1102
+       x2="1.0000000"
 
1103
+       y1="0.50000000"
 
1104
+       x1="1.3267924e-17"
 
1105
+       id="linearGradient1430"
 
1106
+       xlink:href="#linearGradient839" />
 
1107
+    <linearGradient
 
1108
+       id="linearGradient1419">
 
1109
+      <stop
 
1110
+         id="stop1422"
 
1111
+         offset="0.0000000"
 
1112
+         style="stop-color:#00ff00;stop-opacity:1.0000000;" />
 
1113
+      <stop
 
1114
+         id="stop1424"
 
1115
+         offset="0.30839416"
 
1116
+         style="stop-color:#ff0000;stop-opacity:1.0000000;" />
 
1117
+      <stop
 
1118
+         id="stop1426"
 
1119
+         offset="0.75000000"
 
1120
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;" />
 
1121
+      <stop
 
1122
+         id="stop1428"
 
1123
+         offset="1.0000000"
 
1124
+         style="stop-color:#ffff00;stop-opacity:1.0000000;" />
 
1125
+    </linearGradient>
 
1126
+    <linearGradient
 
1127
+       id="linearGradient1409">
 
1128
+      <stop
 
1129
+         id="stop1411"
 
1130
+         offset="0.0000000"
 
1131
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1132
+      <stop
 
1133
+         id="stop1413"
 
1134
+         offset="0.39364964"
 
1135
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1136
+      <stop
 
1137
+         id="stop1415"
 
1138
+         offset="0.72036445"
 
1139
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1140
+      <stop
 
1141
+         id="stop1417"
 
1142
+         offset="1.0000000"
 
1143
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1144
+    </linearGradient>
 
1145
+    <linearGradient
 
1146
+       y2="0.50000000"
 
1147
+       x2="1.0000000"
 
1148
+       y1="0.50000000"
 
1149
+       x1="1.3267924e-17"
 
1150
+       id="linearGradient2256"
 
1151
+       xlink:href="#linearGradient839" />
 
1152
+    <linearGradient
 
1153
+       id="linearGradient2246">
 
1154
+      <stop
 
1155
+         id="stop2248"
 
1156
+         offset="0.0000000"
 
1157
+         style="stop-color:#00ff00;stop-opacity:1.0000000;" />
 
1158
+      <stop
 
1159
+         id="stop2250"
 
1160
+         offset="0.30839416"
 
1161
+         style="stop-color:#ff0000;stop-opacity:1.0000000;" />
 
1162
+      <stop
 
1163
+         id="stop2252"
 
1164
+         offset="0.75000000"
 
1165
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;" />
 
1166
+      <stop
 
1167
+         id="stop2254"
 
1168
+         offset="1.0000000"
 
1169
+         style="stop-color:#ffff00;stop-opacity:1.0000000;" />
 
1170
+    </linearGradient>
 
1171
+    <linearGradient
 
1172
+       id="linearGradient2236">
 
1173
+      <stop
 
1174
+         id="stop2238"
 
1175
+         offset="0.0000000"
 
1176
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1177
+      <stop
 
1178
+         id="stop2240"
 
1179
+         offset="0.39364964"
 
1180
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1181
+      <stop
 
1182
+         id="stop2242"
 
1183
+         offset="0.72036445"
 
1184
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1185
+      <stop
 
1186
+         id="stop2244"
 
1187
+         offset="1.0000000"
 
1188
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1189
+    </linearGradient>
 
1190
+    <linearGradient
 
1191
+       y2="84.034923"
 
1192
+       x2="107.81382"
 
1193
+       y1="84.034923"
 
1194
+       x1="12.230590"
 
1195
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-202.1667,-3.665422)"
 
1196
+       gradientUnits="userSpaceOnUse"
 
1197
+       id="linearGradient2269"
 
1198
+       xlink:href="#linearGradient839"
 
1199
+       inkscape:collect="always" />
 
1200
+    <linearGradient
 
1201
+       xlink:href="#linearGradient839"
 
1202
+       id="linearGradient1452"
 
1203
+       x1="1.3267924e-17"
 
1204
+       y1="0.50000000"
 
1205
+       x2="1.0000000"
 
1206
+       y2="0.50000000" />
 
1207
+    <linearGradient
 
1208
+       id="linearGradient1442">
 
1209
+      <stop
 
1210
+         style="stop-color:#00ff00;stop-opacity:1.0000000;"
 
1211
+         offset="0.0000000"
 
1212
+         id="stop1444" />
 
1213
+      <stop
 
1214
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
 
1215
+         offset="0.30839416"
 
1216
+         id="stop1446" />
 
1217
+      <stop
 
1218
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;"
 
1219
+         offset="0.75000000"
 
1220
+         id="stop1448" />
 
1221
+      <stop
 
1222
+         style="stop-color:#ffff00;stop-opacity:1.0000000;"
 
1223
+         offset="1.0000000"
 
1224
+         id="stop1450" />
 
1225
+    </linearGradient>
 
1226
+    <linearGradient
 
1227
+       id="linearGradient1432">
 
1228
+      <stop
 
1229
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1230
+         offset="0.0000000"
 
1231
+         id="stop1434" />
 
1232
+      <stop
 
1233
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1234
+         offset="0.39364964"
 
1235
+         id="stop1436" />
 
1236
+      <stop
 
1237
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1238
+         offset="0.72036445"
 
1239
+         id="stop1438" />
 
1240
+      <stop
 
1241
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1242
+         offset="1.0000000"
 
1243
+         id="stop1440" />
 
1244
+    </linearGradient>
 
1245
+    <linearGradient
 
1246
+       inkscape:collect="always"
 
1247
+       xlink:href="#linearGradient839"
 
1248
+       id="linearGradient1465"
 
1249
+       gradientUnits="userSpaceOnUse"
 
1250
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-174.3701,-4.343388)"
 
1251
+       x1="12.230590"
 
1252
+       y1="84.034923"
 
1253
+       x2="107.81382"
 
1254
+       y2="84.034923" />
 
1255
+  </defs>
 
1256
+  <sodipodi:namedview
 
1257
+     id="base"
 
1258
+     pagecolor="#ffffff"
 
1259
+     bordercolor="#666666"
 
1260
+     borderopacity="1.0"
 
1261
+     inkscape:pageopacity="0.0"
 
1262
+     inkscape:pageshadow="2"
 
1263
+     inkscape:zoom="2.9500000"
 
1264
+     inkscape:cx="80.000000"
 
1265
+     inkscape:cy="80.000000"
 
1266
+     inkscape:window-width="756"
 
1267
+     inkscape:window-height="653"
 
1268
+     showgrid="true"
 
1269
+     snaptogrid="false"
 
1270
+     gridspacingx="1.0000000mm"
 
1271
+     gridspacingy="1.0000000mm"
 
1272
+     inkscape:window-x="0"
 
1273
+     inkscape:window-y="34"
 
1274
+     inkscape:current-layer="svg1" />
 
1275
+  <rect
 
1276
+     style="stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:0.49999997;stroke-linejoin:round;stroke-width:7.5000000;stroke:#000000;fill-rule:evenodd;fill:none"
 
1277
+     id="rect834"
 
1278
+     width="117.75612"
 
1279
+     height="133.38696"
 
1280
+     x="20.782476"
 
1281
+     y="13.614116"
 
1282
+     ry="22.892691"
 
1283
+     rx="22.892691" />
 
1284
+  <rect
 
1285
+     style="stroke-miterlimit:4.0000000;stroke-dasharray:none;fill:#df421e;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000"
 
1286
+     id="rect828"
 
1287
+     width="117.75612"
 
1288
+     height="133.38696"
 
1289
+     x="20.643702"
 
1290
+     y="13.524447"
 
1291
+     ry="22.892691"
 
1292
+     rx="22.892691" />
 
1293
+  <rect
 
1294
+     rx="1.2896985"
 
1295
+     y="30.619467"
 
1296
+     x="22.887306"
 
1297
+     ry="1.2896985"
 
1298
+     height="67.172066"
 
1299
+     width="113.74728"
 
1300
+     id="rect832"
 
1301
+     style="fill:url(#linearGradient1401);fill-rule:evenodd;stroke:#000000;stroke-width:3.2727857" />
 
1302
+  <path
 
1303
+     style="stroke-width:6.2500000;stroke:none;fill-rule:evenodd;fill-opacity:0.27935222;fill:#ffffff"
 
1304
+     d="M 117.38055,142.41910 L 41.662967,142.41910 C 30.018294,142.41910 24.316361,136.71717 24.316361,125.07250 C 24.316361,125.07250 51.936692,58.557014 134.72716,48.414718 L 134.72716,125.07250 C 134.72716,136.71717 129.02522,142.41910 117.38055,142.41910 z "
 
1305
+     id="path2838"
 
1306
+     sodipodi:nodetypes="cccccc" />
 
1307
+  <path
 
1308
+     style="fill:url(#linearGradient2830);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:6.2500000"
 
1309
+     d="M 41.662967,17.197108 L 117.38055,17.197108 C 129.02522,17.197108 134.72716,22.899041 134.72716,34.543716 C 134.72716,34.543716 55.440598,35.449314 24.316361,125.89213 L 24.316361,34.543716 C 24.316361,24.254973 31.374226,17.197108 41.662967,17.197108 z "
 
1310
+     id="rect2063"
 
1311
+     sodipodi:nodetypes="cccccc" />
 
1312
+  <path
 
1313
+     style="font-size:40.000000;stroke-width:1.0000000pt;font-family:Trek"
 
1314
+     d="M 111.04055,135.19685 C 107.01080,135.19685 103.91197,133.92161 101.74406,131.37113 C 99.601664,128.79515 98.530459,125.10971 98.530459,120.31482 C 98.530459,115.46891 99.601664,111.78347 101.74406,109.25850 C 103.88646,106.70802 106.98529,105.43278 111.04055,105.43278 L 127.07030,105.43278 L 127.07030,110.55924 L 112.95341,110.55924 C 110.50495,110.55924 108.66860,111.37539 107.44437,113.00770 C 106.22014,114.64000 105.60803,117.07571 105.60803,120.31482 C 105.60803,123.57942 106.18189,126.02788 107.32960,127.66019 C 108.47732,129.29249 110.35192,130.10865 112.95341,130.10865 L 120.71961,130.10865 L 120.71961,122.76327 L 112.34129,122.76327 L 112.34129,117.86636 L 127.07030,117.86636 L 127.07030,135.19685 L 111.04055,135.19685 z M 63.792960,105.43278 L 71.176591,105.43278 L 80.205284,128.65488 L 80.358313,128.65488 L 89.693060,105.43278 L 97.076689,105.43278 L 83.189342,135.19685 L 76.609111,135.19685 L 63.792960,105.43278 z M 59.163843,105.43278 L 59.163843,110.55924 L 42.713264,110.55924 C 41.667572,110.55924 40.723892,110.86530 39.882235,111.47741 C 39.168107,112.11502 38.811034,112.99494 38.811034,114.11716 C 38.811034,115.34138 39.206364,116.25956 39.997006,116.87167 C 40.685635,117.40727 41.629315,117.67507 42.828036,117.67507 L 52.086269,117.67507 C 54.152155,117.67507 56.014007,118.26168 57.671814,119.43490 C 59.763209,120.99069 60.808901,123.32437 60.808901,126.43596 C 60.808901,129.39451 59.763209,131.71545 57.671814,133.39876 C 56.039515,134.59749 54.177663,135.19685 52.086269,135.19685 L 32.383831,135.19685 L 32.383831,130.10865 L 49.216982,130.10865 C 50.186169,130.10865 51.078833,129.76433 51.894983,129.07570 C 52.711142,128.38708 53.119212,127.50716 53.119212,126.43596 C 53.119212,125.33925 52.711142,124.45934 51.894983,123.79622 C 51.129840,123.10759 50.198919,122.76327 49.102210,122.76327 L 39.767463,122.76327 C 37.701577,122.76327 35.865233,122.18942 34.258432,121.04170 C 32.167047,119.48591 31.121345,117.17773 31.121345,114.11716 C 31.121345,111.05658 32.167047,108.74839 34.258432,107.19261 C 35.814226,106.01939 37.650570,105.43278 39.767463,105.43278 L 59.163843,105.43278 z "
 
1315
+     id="path861" />
 
1316
+  <path
 
1317
+     style="font-size:40.000000;fill:#ffffff;fill-opacity:1.0000000;stroke-width:1.0000000pt;font-family:Trek"
 
1318
+     d="M 110.36259,134.51889 C 106.33284,134.51889 103.23401,133.24365 101.06610,130.69317 C 98.923698,128.11719 97.852493,124.43175 97.852493,119.63686 C 97.852493,114.79095 98.923698,111.10551 101.06610,108.58054 C 103.20850,106.03006 106.30733,104.75482 110.36259,104.75482 L 126.39234,104.75482 L 126.39234,109.88128 L 112.27545,109.88128 C 109.82699,109.88128 107.99064,110.69743 106.76641,112.32974 C 105.54218,113.96204 104.93007,116.39775 104.93007,119.63686 C 104.93007,122.90146 105.50393,125.34992 106.65164,126.98223 C 107.79936,128.61453 109.67396,129.43069 112.27545,129.43069 L 120.04165,129.43069 L 120.04165,122.08531 L 111.66333,122.08531 L 111.66333,117.18840 L 126.39234,117.18840 L 126.39234,134.51889 L 110.36259,134.51889 z M 63.114994,104.75482 L 70.498625,104.75482 L 79.527318,127.97692 L 79.680347,127.97692 L 89.015094,104.75482 L 96.398723,104.75482 L 82.511376,134.51889 L 75.931145,134.51889 L 63.114994,104.75482 z M 58.485877,104.75482 L 58.485877,109.88128 L 42.035298,109.88128 C 40.989606,109.88128 40.045926,110.18734 39.204269,110.79945 C 38.490141,111.43706 38.133068,112.31698 38.133068,113.43920 C 38.133068,114.66342 38.528398,115.58160 39.319040,116.19371 C 40.007669,116.72931 40.951349,116.99711 42.150070,116.99711 L 51.408303,116.99711 C 53.474189,116.99711 55.336041,117.58372 56.993848,118.75694 C 59.085243,120.31273 60.130935,122.64641 60.130935,125.75800 C 60.130935,128.71655 59.085243,131.03749 56.993848,132.72080 C 55.361549,133.91953 53.499697,134.51889 51.408303,134.51889 L 31.705865,134.51889 L 31.705865,129.43069 L 48.539016,129.43069 C 49.508203,129.43069 50.400867,129.08637 51.217017,128.39774 C 52.033176,127.70912 52.441246,126.82920 52.441246,125.75800 C 52.441246,124.66129 52.033176,123.78138 51.217017,123.11826 C 50.451874,122.42963 49.520953,122.08531 48.424244,122.08531 L 39.089497,122.08531 C 37.023611,122.08531 35.187267,121.51146 33.580466,120.36374 C 31.489081,118.80795 30.443379,116.49977 30.443379,113.43920 C 30.443379,110.37862 31.489081,108.07043 33.580466,106.51465 C 35.136260,105.34143 36.972604,104.75482 39.089497,104.75482 L 58.485877,104.75482 z "
 
1319
+     id="path1469" />
 
1320
+</svg>
 
1321
--- /dev/null
 
1322
+++ pyacidobasic-0.1/icons/mime-application:pdf.svg
 
1323
@@ -0,0 +1,300 @@
 
1324
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
1325
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
 
1326
+<svg
 
1327
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
 
1328
+   xmlns:cc="http://web.resource.org/cc/"
 
1329
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
1330
+   xmlns:svg="http://www.w3.org/2000/svg"
 
1331
+   xmlns="http://www.w3.org/2000/svg"
 
1332
+   xmlns:xlink="http://www.w3.org/1999/xlink"
 
1333
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
 
1334
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 
1335
+   id="svg1"
 
1336
+   sodipodi:version="0.32"
 
1337
+   inkscape:version="0.41"
 
1338
+   width="128.00000pt"
 
1339
+   height="128.00000pt"
 
1340
+   sodipodi:docbase="/home/francois/Rodent/scalable/mimetypes"
 
1341
+   sodipodi:docname="gnome-mime-application-pdf.svg">
 
1342
+  <metadata
 
1343
+     id="metadata15">
 
1344
+    <rdf:RDF
 
1345
+       id="RDF17">
 
1346
+      <cc:Work
 
1347
+         rdf:about=""
 
1348
+         id="Work19">
 
1349
+        <dc:format
 
1350
+           id="format21">image/svg+xml</dc:format>
 
1351
+        <dc:type
 
1352
+           id="type23"
 
1353
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
1354
+      </cc:Work>
 
1355
+    </rdf:RDF>
 
1356
+  </metadata>
 
1357
+  <defs
 
1358
+     id="defs3">
 
1359
+    <linearGradient
 
1360
+       id="linearGradient3587">
 
1361
+      <stop
 
1362
+         id="stop3589"
 
1363
+         offset="0.0000000"
 
1364
+         style="stop-color:#efe0cd;stop-opacity:0.56097561;" />
 
1365
+      <stop
 
1366
+         id="stop3591"
 
1367
+         offset="1.0000000"
 
1368
+         style="stop-color:#cececd;stop-opacity:0.21951219;" />
 
1369
+    </linearGradient>
 
1370
+    <linearGradient
 
1371
+       id="linearGradient2832">
 
1372
+      <stop
 
1373
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
 
1374
+         offset="0.0000000"
 
1375
+         id="stop2834" />
 
1376
+      <stop
 
1377
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
 
1378
+         offset="1.0000000"
 
1379
+         id="stop2836" />
 
1380
+    </linearGradient>
 
1381
+    <linearGradient
 
1382
+       id="linearGradient839">
 
1383
+      <stop
 
1384
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1385
+         offset="0.0000000"
 
1386
+         id="stop840" />
 
1387
+      <stop
 
1388
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1389
+         offset="0.39364964"
 
1390
+         id="stop841" />
 
1391
+      <stop
 
1392
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1393
+         offset="0.72036445"
 
1394
+         id="stop842" />
 
1395
+      <stop
 
1396
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1397
+         offset="1.0000000"
 
1398
+         id="stop843" />
 
1399
+    </linearGradient>
 
1400
+    <linearGradient
 
1401
+       xlink:href="#linearGradient839"
 
1402
+       id="linearGradient836"
 
1403
+       x1="1.3267924e-17"
 
1404
+       y1="0.50000000"
 
1405
+       x2="1.0000000"
 
1406
+       y2="0.50000000" />
 
1407
+    <linearGradient
 
1408
+       inkscape:collect="always"
 
1409
+       xlink:href="#linearGradient2832"
 
1410
+       id="linearGradient2830"
 
1411
+       gradientTransform="matrix(0.939922,0.000000,0.000000,0.896911,4.950743,6.511692)"
 
1412
+       x1="23.983805"
 
1413
+       y1="16.369013"
 
1414
+       x2="72.999245"
 
1415
+       y2="73.398720"
 
1416
+       gradientUnits="userSpaceOnUse" />
 
1417
+    <linearGradient
 
1418
+       y2="93.732185"
 
1419
+       x2="107.31592"
 
1420
+       y1="124.28045"
 
1421
+       x1="111.32588"
 
1422
+       gradientTransform="matrix(0.777129,0.000000,0.000000,0.894628,-162.4688,12.76856)"
 
1423
+       gradientUnits="userSpaceOnUse"
 
1424
+       id="linearGradient1407"
 
1425
+       xlink:href="#linearGradient1700"
 
1426
+       inkscape:collect="always" />
 
1427
+    <linearGradient
 
1428
+       y2="93.732185"
 
1429
+       x2="107.31592"
 
1430
+       y1="124.28045"
 
1431
+       x1="111.32588"
 
1432
+       gradientTransform="matrix(0.777129,0.000000,0.000000,0.894628,-2.922179,10.43077)"
 
1433
+       gradientUnits="userSpaceOnUse"
 
1434
+       id="linearGradient1390"
 
1435
+       xlink:href="#linearGradient1700"
 
1436
+       inkscape:collect="always" />
 
1437
+    <linearGradient
 
1438
+       id="linearGradient1350">
 
1439
+      <stop
 
1440
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1441
+         offset="0.0000000"
 
1442
+         id="stop1352" />
 
1443
+      <stop
 
1444
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1445
+         offset="0.39364964"
 
1446
+         id="stop1354" />
 
1447
+      <stop
 
1448
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1449
+         offset="0.72036445"
 
1450
+         id="stop1356" />
 
1451
+      <stop
 
1452
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1453
+         offset="1.0000000"
 
1454
+         id="stop1358" />
 
1455
+    </linearGradient>
 
1456
+    <linearGradient
 
1457
+       xlink:href="#linearGradient839"
 
1458
+       id="linearGradient1360"
 
1459
+       x1="1.3267924e-17"
 
1460
+       y1="0.50000000"
 
1461
+       x2="1.0000000"
 
1462
+       y2="0.50000000" />
 
1463
+    <linearGradient
 
1464
+       inkscape:collect="always"
 
1465
+       xlink:href="#linearGradient1700"
 
1466
+       id="linearGradient1362"
 
1467
+       gradientTransform="matrix(0.870364,0.000000,0.000000,1.001961,4.612015,4.886798)"
 
1468
+       x1="123.50353"
 
1469
+       y1="121.73159"
 
1470
+       x2="128.66997"
 
1471
+       y2="87.980263"
 
1472
+       gradientUnits="userSpaceOnUse" />
 
1473
+    <linearGradient
 
1474
+       xlink:href="#linearGradient839"
 
1475
+       id="linearGradient1363"
 
1476
+       x1="1.3267924e-17"
 
1477
+       y1="0.50000000"
 
1478
+       x2="1.0000000"
 
1479
+       y2="0.50000000" />
 
1480
+    <linearGradient
 
1481
+       id="linearGradient1353">
 
1482
+      <stop
 
1483
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1484
+         offset="0.0000000"
 
1485
+         id="stop1355" />
 
1486
+      <stop
 
1487
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1488
+         offset="0.39364964"
 
1489
+         id="stop1357" />
 
1490
+      <stop
 
1491
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1492
+         offset="0.72036445"
 
1493
+         id="stop1359" />
 
1494
+      <stop
 
1495
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1496
+         offset="1.0000000"
 
1497
+         id="stop1361" />
 
1498
+    </linearGradient>
 
1499
+    <linearGradient
 
1500
+       id="linearGradient1700">
 
1501
+      <stop
 
1502
+         style="stop-color:#000000;stop-opacity:0.69918698;"
 
1503
+         offset="0.0000000"
 
1504
+         id="stop1701" />
 
1505
+      <stop
 
1506
+         style="stop-color:#000000;stop-opacity:0;"
 
1507
+         offset="1"
 
1508
+         id="stop1702" />
 
1509
+    </linearGradient>
 
1510
+    <linearGradient
 
1511
+       y2="0.50000000"
 
1512
+       x2="1.0000000"
 
1513
+       y1="0.50000000"
 
1514
+       x1="1.3267924e-17"
 
1515
+       id="linearGradient1427"
 
1516
+       xlink:href="#linearGradient839" />
 
1517
+    <linearGradient
 
1518
+       id="linearGradient1417">
 
1519
+      <stop
 
1520
+         id="stop1419"
 
1521
+         offset="0.0000000"
 
1522
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1523
+      <stop
 
1524
+         id="stop1421"
 
1525
+         offset="0.39364964"
 
1526
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1527
+      <stop
 
1528
+         id="stop1423"
 
1529
+         offset="0.72036445"
 
1530
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1531
+      <stop
 
1532
+         id="stop1425"
 
1533
+         offset="1.0000000"
 
1534
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1535
+    </linearGradient>
 
1536
+    <linearGradient
 
1537
+       xlink:href="#linearGradient839"
 
1538
+       id="linearGradient1381"
 
1539
+       x1="1.3267924e-17"
 
1540
+       y1="0.50000000"
 
1541
+       x2="1.0000000"
 
1542
+       y2="0.50000000" />
 
1543
+    <linearGradient
 
1544
+       id="linearGradient1371">
 
1545
+      <stop
 
1546
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1547
+         offset="0.0000000"
 
1548
+         id="stop1373" />
 
1549
+      <stop
 
1550
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1551
+         offset="0.39364964"
 
1552
+         id="stop1375" />
 
1553
+      <stop
 
1554
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1555
+         offset="0.72036445"
 
1556
+         id="stop1377" />
 
1557
+      <stop
 
1558
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1559
+         offset="1.0000000"
 
1560
+         id="stop1379" />
 
1561
+    </linearGradient>
 
1562
+  </defs>
 
1563
+  <sodipodi:namedview
 
1564
+     id="base"
 
1565
+     pagecolor="#ffffff"
 
1566
+     bordercolor="#666666"
 
1567
+     borderopacity="1.0"
 
1568
+     inkscape:pageopacity="0.0"
 
1569
+     inkscape:pageshadow="2"
 
1570
+     inkscape:zoom="2.9500000"
 
1571
+     inkscape:cx="80.000000"
 
1572
+     inkscape:cy="80.000000"
 
1573
+     inkscape:window-width="756"
 
1574
+     inkscape:window-height="653"
 
1575
+     showgrid="true"
 
1576
+     snaptogrid="false"
 
1577
+     gridspacingx="1.0000000mm"
 
1578
+     gridspacingy="1.0000000mm"
 
1579
+     inkscape:window-x="0"
 
1580
+     inkscape:window-y="34"
 
1581
+     inkscape:current-layer="svg1" />
 
1582
+  <rect
 
1583
+     style="stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:0.49999997;stroke-linejoin:round;stroke-width:7.5000000;stroke:#000000;fill-rule:evenodd;fill:none"
 
1584
+     id="rect834"
 
1585
+     width="117.75612"
 
1586
+     height="133.38696"
 
1587
+     x="20.782476"
 
1588
+     y="13.614116"
 
1589
+     ry="22.892691"
 
1590
+     rx="22.892691" />
 
1591
+  <rect
 
1592
+     style="stroke-width:3.7500000;stroke:#000000;fill-rule:evenodd;fill-opacity:1.0000000;fill:#bab5ab;stroke-dasharray:none;stroke-miterlimit:4.0000000"
 
1593
+     id="rect828"
 
1594
+     width="117.75612"
 
1595
+     height="133.38696"
 
1596
+     x="20.643702"
 
1597
+     y="13.524447"
 
1598
+     ry="22.892691"
 
1599
+     rx="22.892691" />
 
1600
+  <path
 
1601
+     style="stroke-width:6.2500000;stroke:none;fill-rule:evenodd;fill-opacity:0.27935222;fill:#ffffff"
 
1602
+     d="M 117.38055,142.41910 L 41.662967,142.41910 C 30.018294,142.41910 24.316361,136.71717 24.316361,125.07250 C 24.316361,125.07250 51.936692,58.557014 134.72716,48.414718 L 134.72716,125.07250 C 134.72716,136.71717 129.02522,142.41910 117.38055,142.41910 z "
 
1603
+     id="path2838"
 
1604
+     sodipodi:nodetypes="cccccc" />
 
1605
+  <path
 
1606
+     style="font-size:40.000000;fill:#ffffff;fill-opacity:1.0000000;stroke-width:1.0000000pt;font-family:Trek"
 
1607
+     d="M 123.94966,108.28677 L 113.94966,108.28677 C 112.40299,108.28677 111.16299,108.46010 110.22966,108.80677 C 109.77632,108.94010 109.37632,109.10010 109.02966,109.28677 C 108.68299,109.47343 108.34966,109.74010 108.02966,110.08677 C 107.14966,110.88677 106.50966,111.87343 106.10966,113.04677 L 105.86966,114.00677 L 105.78966,115.08677 L 105.78966,115.92677 L 123.94966,115.92677 L 123.94966,121.04677 L 105.78966,121.04677 L 105.78966,134.04677 L 99.069654,134.04677 L 99.069654,118.48677 C 99.069654,117.12677 99.109654,115.94010 99.189654,114.92677 C 99.269654,113.88677 99.402984,112.98010 99.589654,112.20677 C 100.14966,109.64677 101.32299,107.55343 103.10966,105.92677 C 104.22966,104.88677 105.58966,104.12677 107.18966,103.64677 C 108.78966,103.16677 110.81632,102.92677 113.26966,102.92677 L 123.94966,102.92677 L 123.94966,108.28677 z M 66.509654,102.92677 L 83.029654,102.92677 C 87.216314,102.92677 90.402984,104.26010 92.589654,106.92677 C 94.776314,109.59343 95.869654,113.44677 95.869654,118.48677 C 95.869654,123.47343 94.776314,127.31343 92.589654,130.00677 C 90.429654,132.70010 87.242984,134.04677 83.029654,134.04677 L 66.509654,134.04677 L 66.509654,102.92677 z M 72.989654,128.72677 L 80.869654,128.72677 C 83.482984,128.72677 85.416314,127.88677 86.669654,126.20677 C 87.922984,124.50010 88.549654,121.92677 88.549654,118.48677 C 88.549654,115.04677 87.949654,112.48677 86.749654,110.80677 C 85.576314,109.12677 83.616314,108.28677 80.869654,108.28677 L 72.989654,108.28677 L 72.989654,128.72677 z M 41.749654,122.92677 L 41.749654,134.04677 L 35.029654,134.04677 L 35.029654,102.92677 L 53.709654,102.92677 C 56.589654,102.92677 58.869654,103.78010 60.549654,105.48677 C 62.229654,107.16677 63.069654,109.64677 63.069654,112.92677 C 63.069654,116.18010 62.229654,118.66010 60.549654,120.36677 C 58.869654,122.07343 56.589654,122.92677 53.709654,122.92677 L 41.749654,122.92677 z M 41.749654,108.28677 L 41.749654,117.60677 L 50.669654,117.60677 C 52.136314,117.60677 53.336314,117.23343 54.269654,116.48677 C 55.202984,115.71343 55.669654,114.52677 55.669654,112.92677 C 55.669654,111.35343 55.202984,110.19343 54.269654,109.44677 C 53.362984,108.67343 52.162984,108.28677 50.669654,108.28677 L 41.749654,108.28677 z "
 
1608
+     id="path1395" />
 
1609
+  <path
 
1610
+     style="font-size:40.000000;stroke-width:1.0000000pt;font-family:Trek"
 
1611
+     d="M 124.62762,108.96473 L 114.62762,108.96473 C 113.08095,108.96473 111.84095,109.13806 110.90762,109.48473 C 110.45428,109.61806 110.05428,109.77806 109.70762,109.96473 C 109.36095,110.15139 109.02762,110.41806 108.70762,110.76473 C 107.82762,111.56473 107.18762,112.55139 106.78762,113.72473 L 106.54762,114.68473 L 106.46762,115.76473 L 106.46762,116.60473 L 124.62762,116.60473 L 124.62762,121.72473 L 106.46762,121.72473 L 106.46762,134.72473 L 99.747620,134.72473 L 99.747620,119.16473 C 99.747620,117.80473 99.787620,116.61806 99.867620,115.60473 C 99.947620,114.56473 100.08095,113.65806 100.26762,112.88473 C 100.82762,110.32473 102.00095,108.23139 103.78762,106.60473 C 104.90762,105.56473 106.26762,104.80473 107.86762,104.32473 C 109.46762,103.84473 111.49428,103.60473 113.94762,103.60473 L 124.62762,103.60473 L 124.62762,108.96473 z M 67.187620,103.60473 L 83.707620,103.60473 C 87.894280,103.60473 91.080950,104.93806 93.267620,107.60473 C 95.454280,110.27139 96.547620,114.12473 96.547620,119.16473 C 96.547620,124.15139 95.454280,127.99139 93.267620,130.68473 C 91.107620,133.37806 87.920950,134.72473 83.707620,134.72473 L 67.187620,134.72473 L 67.187620,103.60473 z M 73.667620,129.40473 L 81.547620,129.40473 C 84.160950,129.40473 86.094280,128.56473 87.347620,126.88473 C 88.600950,125.17806 89.227620,122.60473 89.227620,119.16473 C 89.227620,115.72473 88.627620,113.16473 87.427620,111.48473 C 86.254280,109.80473 84.294280,108.96473 81.547620,108.96473 L 73.667620,108.96473 L 73.667620,129.40473 z M 42.427620,123.60473 L 42.427620,134.72473 L 35.707620,134.72473 L 35.707620,103.60473 L 54.387620,103.60473 C 57.267620,103.60473 59.547620,104.45806 61.227620,106.16473 C 62.907620,107.84473 63.747620,110.32473 63.747620,113.60473 C 63.747620,116.85806 62.907620,119.33806 61.227620,121.04473 C 59.547620,122.75139 57.267620,123.60473 54.387620,123.60473 L 42.427620,123.60473 z M 42.427620,108.96473 L 42.427620,118.28473 L 51.347620,118.28473 C 52.814280,118.28473 54.014280,117.91139 54.947620,117.16473 C 55.880950,116.39139 56.347620,115.20473 56.347620,113.60473 C 56.347620,112.03139 55.880950,110.87139 54.947620,110.12473 C 54.040950,109.35139 52.840950,108.96473 51.347620,108.96473 L 42.427620,108.96473 z "
 
1612
+     id="path836" />
 
1613
+  <path
 
1614
+     style="fill:#ffffff;fill-rule:evenodd;stroke:#df421e;stroke-width:5.9288116"
 
1615
+     d="M 79.224680,24.446240 C 95.460720,24.583832 60.374370,102.04899 47.027790,91.729481 C 35.469940,76.043813 121.05311,59.807779 113.62306,69.852106 C 98.487780,87.326484 68.905160,24.446240 79.224680,24.446240 z "
 
1616
+     id="path847"
 
1617
+     sodipodi:nodetypes="cccc" />
 
1618
+  <path
 
1619
+     style="fill:url(#linearGradient2830);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:6.2500000"
 
1620
+     d="M 41.662967,17.197108 L 117.38055,17.197108 C 129.02522,17.197108 134.72716,22.899041 134.72716,34.543716 C 134.72716,34.543716 55.440598,35.449314 24.316361,125.89213 L 24.316361,34.543716 C 24.316361,24.254973 31.374226,17.197108 41.662967,17.197108 z "
 
1621
+     id="rect2063"
 
1622
+     sodipodi:nodetypes="cccccc" />
 
1623
+</svg>
 
1624
--- /dev/null
 
1625
+++ pyacidobasic-0.1/icons/mime-image:jpeg.svg
 
1626
@@ -0,0 +1,552 @@
 
1627
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
1628
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
 
1629
+<svg
 
1630
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
 
1631
+   xmlns:cc="http://web.resource.org/cc/"
 
1632
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
1633
+   xmlns:svg="http://www.w3.org/2000/svg"
 
1634
+   xmlns="http://www.w3.org/2000/svg"
 
1635
+   xmlns:xlink="http://www.w3.org/1999/xlink"
 
1636
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
 
1637
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 
1638
+   sodipodi:docname="gnome-mime-image-jpeg.svg"
 
1639
+   sodipodi:docbase="/home/francois/Rodent/scalable/mimetypes"
 
1640
+   height="128.00000pt"
 
1641
+   width="128.00000pt"
 
1642
+   inkscape:version="0.41"
 
1643
+   sodipodi:version="0.32"
 
1644
+   id="svg1">
 
1645
+  <metadata
 
1646
+     id="metadata15">
 
1647
+    <rdf:RDF
 
1648
+       id="RDF17">
 
1649
+      <cc:Work
 
1650
+         id="Work19"
 
1651
+         rdf:about="">
 
1652
+        <dc:format
 
1653
+           id="format21">image/svg+xml</dc:format>
 
1654
+        <dc:type
 
1655
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"
 
1656
+           id="type23" />
 
1657
+      </cc:Work>
 
1658
+    </rdf:RDF>
 
1659
+  </metadata>
 
1660
+  <defs
 
1661
+     id="defs3">
 
1662
+    <linearGradient
 
1663
+       id="linearGradient3587">
 
1664
+      <stop
 
1665
+         style="stop-color:#efe0cd;stop-opacity:0.56097561;"
 
1666
+         offset="0.0000000"
 
1667
+         id="stop3589" />
 
1668
+      <stop
 
1669
+         style="stop-color:#cececd;stop-opacity:0.21951219;"
 
1670
+         offset="1.0000000"
 
1671
+         id="stop3591" />
 
1672
+    </linearGradient>
 
1673
+    <linearGradient
 
1674
+       id="linearGradient2832">
 
1675
+      <stop
 
1676
+         id="stop2834"
 
1677
+         offset="0.0000000"
 
1678
+         style="stop-color:#ffffff;stop-opacity:1.0000000;" />
 
1679
+      <stop
 
1680
+         id="stop2836"
 
1681
+         offset="1.0000000"
 
1682
+         style="stop-color:#ffffff;stop-opacity:0.0000000;" />
 
1683
+    </linearGradient>
 
1684
+    <linearGradient
 
1685
+       id="linearGradient839">
 
1686
+      <stop
 
1687
+         id="stop840"
 
1688
+         offset="0.0000000"
 
1689
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1690
+      <stop
 
1691
+         id="stop841"
 
1692
+         offset="0.39364964"
 
1693
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1694
+      <stop
 
1695
+         id="stop842"
 
1696
+         offset="0.72036445"
 
1697
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1698
+      <stop
 
1699
+         id="stop843"
 
1700
+         offset="1.0000000"
 
1701
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1702
+    </linearGradient>
 
1703
+    <linearGradient
 
1704
+       y2="84.034923"
 
1705
+       x2="107.81382"
 
1706
+       y1="84.034923"
 
1707
+       x1="12.230590"
 
1708
+       id="linearGradient836"
 
1709
+       xlink:href="#linearGradient839"
 
1710
+       gradientTransform="scale(1.353569,0.738788)"
 
1711
+       gradientUnits="userSpaceOnUse" />
 
1712
+    <linearGradient
 
1713
+       gradientUnits="userSpaceOnUse"
 
1714
+       y2="73.398720"
 
1715
+       x2="72.999245"
 
1716
+       y1="16.369013"
 
1717
+       x1="23.983805"
 
1718
+       gradientTransform="matrix(0.939922,0.000000,0.000000,0.896911,4.950743,6.511692)"
 
1719
+       id="linearGradient2830"
 
1720
+       xlink:href="#linearGradient2832"
 
1721
+       inkscape:collect="always" />
 
1722
+    <linearGradient
 
1723
+       inkscape:collect="always"
 
1724
+       xlink:href="#linearGradient1700"
 
1725
+       id="linearGradient1407"
 
1726
+       gradientUnits="userSpaceOnUse"
 
1727
+       gradientTransform="matrix(0.777129,0.000000,0.000000,0.894628,-162.4688,12.76856)"
 
1728
+       x1="111.32588"
 
1729
+       y1="124.28045"
 
1730
+       x2="107.31592"
 
1731
+       y2="93.732185" />
 
1732
+    <linearGradient
 
1733
+       inkscape:collect="always"
 
1734
+       xlink:href="#linearGradient1700"
 
1735
+       id="linearGradient1390"
 
1736
+       gradientUnits="userSpaceOnUse"
 
1737
+       gradientTransform="matrix(0.777129,0.000000,0.000000,0.894628,-2.922179,10.43077)"
 
1738
+       x1="111.32588"
 
1739
+       y1="124.28045"
 
1740
+       x2="107.31592"
 
1741
+       y2="93.732185" />
 
1742
+    <linearGradient
 
1743
+       id="linearGradient1350">
 
1744
+      <stop
 
1745
+         id="stop1352"
 
1746
+         offset="0.0000000"
 
1747
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1748
+      <stop
 
1749
+         id="stop1354"
 
1750
+         offset="0.39364964"
 
1751
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1752
+      <stop
 
1753
+         id="stop1356"
 
1754
+         offset="0.72036445"
 
1755
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1756
+      <stop
 
1757
+         id="stop1358"
 
1758
+         offset="1.0000000"
 
1759
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1760
+    </linearGradient>
 
1761
+    <linearGradient
 
1762
+       y2="0.50000000"
 
1763
+       x2="1.0000000"
 
1764
+       y1="0.50000000"
 
1765
+       x1="1.3267924e-17"
 
1766
+       id="linearGradient1360"
 
1767
+       xlink:href="#linearGradient839" />
 
1768
+    <linearGradient
 
1769
+       gradientUnits="userSpaceOnUse"
 
1770
+       y2="87.980263"
 
1771
+       x2="128.66997"
 
1772
+       y1="121.73159"
 
1773
+       x1="123.50353"
 
1774
+       gradientTransform="matrix(0.870364,0.000000,0.000000,1.001961,4.612015,4.886798)"
 
1775
+       id="linearGradient1362"
 
1776
+       xlink:href="#linearGradient1700"
 
1777
+       inkscape:collect="always" />
 
1778
+    <linearGradient
 
1779
+       y2="0.50000000"
 
1780
+       x2="1.0000000"
 
1781
+       y1="0.50000000"
 
1782
+       x1="1.3267924e-17"
 
1783
+       id="linearGradient1363"
 
1784
+       xlink:href="#linearGradient839" />
 
1785
+    <linearGradient
 
1786
+       id="linearGradient1353">
 
1787
+      <stop
 
1788
+         id="stop1355"
 
1789
+         offset="0.0000000"
 
1790
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1791
+      <stop
 
1792
+         id="stop1357"
 
1793
+         offset="0.39364964"
 
1794
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1795
+      <stop
 
1796
+         id="stop1359"
 
1797
+         offset="0.72036445"
 
1798
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1799
+      <stop
 
1800
+         id="stop1361"
 
1801
+         offset="1.0000000"
 
1802
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1803
+    </linearGradient>
 
1804
+    <linearGradient
 
1805
+       id="linearGradient1700">
 
1806
+      <stop
 
1807
+         id="stop1701"
 
1808
+         offset="0.0000000"
 
1809
+         style="stop-color:#000000;stop-opacity:0.69918698;" />
 
1810
+      <stop
 
1811
+         id="stop1702"
 
1812
+         offset="1"
 
1813
+         style="stop-color:#000000;stop-opacity:0;" />
 
1814
+    </linearGradient>
 
1815
+    <linearGradient
 
1816
+       xlink:href="#linearGradient839"
 
1817
+       id="linearGradient1427"
 
1818
+       x1="1.3267924e-17"
 
1819
+       y1="0.50000000"
 
1820
+       x2="1.0000000"
 
1821
+       y2="0.50000000" />
 
1822
+    <linearGradient
 
1823
+       id="linearGradient1417">
 
1824
+      <stop
 
1825
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1826
+         offset="0.0000000"
 
1827
+         id="stop1419" />
 
1828
+      <stop
 
1829
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1830
+         offset="0.39364964"
 
1831
+         id="stop1421" />
 
1832
+      <stop
 
1833
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1834
+         offset="0.72036445"
 
1835
+         id="stop1423" />
 
1836
+      <stop
 
1837
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1838
+         offset="1.0000000"
 
1839
+         id="stop1425" />
 
1840
+    </linearGradient>
 
1841
+    <linearGradient
 
1842
+       y2="0.50000000"
 
1843
+       x2="1.0000000"
 
1844
+       y1="0.50000000"
 
1845
+       x1="1.3267924e-17"
 
1846
+       id="linearGradient1381"
 
1847
+       xlink:href="#linearGradient839" />
 
1848
+    <linearGradient
 
1849
+       id="linearGradient1371">
 
1850
+      <stop
 
1851
+         id="stop1373"
 
1852
+         offset="0.0000000"
 
1853
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
1854
+      <stop
 
1855
+         id="stop1375"
 
1856
+         offset="0.39364964"
 
1857
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
1858
+      <stop
 
1859
+         id="stop1377"
 
1860
+         offset="0.72036445"
 
1861
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
1862
+      <stop
 
1863
+         id="stop1379"
 
1864
+         offset="1.0000000"
 
1865
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
1866
+    </linearGradient>
 
1867
+    <linearGradient
 
1868
+       xlink:href="#linearGradient839"
 
1869
+       id="linearGradient1374"
 
1870
+       x1="1.3267924e-17"
 
1871
+       y1="0.50000000"
 
1872
+       x2="1.0000000"
 
1873
+       y2="0.50000000" />
 
1874
+    <linearGradient
 
1875
+       id="linearGradient1364">
 
1876
+      <stop
 
1877
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1878
+         offset="0.0000000"
 
1879
+         id="stop1366" />
 
1880
+      <stop
 
1881
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1882
+         offset="0.39364964"
 
1883
+         id="stop1368" />
 
1884
+      <stop
 
1885
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1886
+         offset="0.72036445"
 
1887
+         id="stop1370" />
 
1888
+      <stop
 
1889
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1890
+         offset="1.0000000"
 
1891
+         id="stop1372" />
 
1892
+    </linearGradient>
 
1893
+    <linearGradient
 
1894
+       xlink:href="#linearGradient839"
 
1895
+       id="linearGradient1389"
 
1896
+       x1="1.3267924e-17"
 
1897
+       y1="0.50000000"
 
1898
+       x2="1.0000000"
 
1899
+       y2="0.50000000" />
 
1900
+    <linearGradient
 
1901
+       id="linearGradient833">
 
1902
+      <stop
 
1903
+         style="stop-color:#00ff00;stop-opacity:1.0000000;"
 
1904
+         offset="0.0000000"
 
1905
+         id="stop834" />
 
1906
+      <stop
 
1907
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
 
1908
+         offset="0.30839416"
 
1909
+         id="stop837" />
 
1910
+      <stop
 
1911
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;"
 
1912
+         offset="0.75000000"
 
1913
+         id="stop838" />
 
1914
+      <stop
 
1915
+         style="stop-color:#ffff00;stop-opacity:1.0000000;"
 
1916
+         offset="1.0000000"
 
1917
+         id="stop835" />
 
1918
+    </linearGradient>
 
1919
+    <linearGradient
 
1920
+       id="linearGradient1373">
 
1921
+      <stop
 
1922
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1923
+         offset="0.0000000"
 
1924
+         id="stop1376" />
 
1925
+      <stop
 
1926
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1927
+         offset="0.39364964"
 
1928
+         id="stop1378" />
 
1929
+      <stop
 
1930
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1931
+         offset="0.72036445"
 
1932
+         id="stop1380" />
 
1933
+      <stop
 
1934
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1935
+         offset="1.0000000"
 
1936
+         id="stop1382" />
 
1937
+    </linearGradient>
 
1938
+    <linearGradient
 
1939
+       inkscape:collect="always"
 
1940
+       xlink:href="#linearGradient839"
 
1941
+       id="linearGradient1401"
 
1942
+       gradientUnits="userSpaceOnUse"
 
1943
+       gradientTransform="matrix(1.222575,0.000000,0.000000,0.738788,6.379309,2.121523)"
 
1944
+       x1="12.230590"
 
1945
+       y1="84.034923"
 
1946
+       x2="107.81382"
 
1947
+       y2="84.034923" />
 
1948
+    <linearGradient
 
1949
+       xlink:href="#linearGradient839"
 
1950
+       id="linearGradient2974"
 
1951
+       x1="1.3267924e-17"
 
1952
+       y1="0.50000000"
 
1953
+       x2="1.0000000"
 
1954
+       y2="0.50000000" />
 
1955
+    <linearGradient
 
1956
+       id="linearGradient2964">
 
1957
+      <stop
 
1958
+         style="stop-color:#00ff00;stop-opacity:1.0000000;"
 
1959
+         offset="0.0000000"
 
1960
+         id="stop2966" />
 
1961
+      <stop
 
1962
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
 
1963
+         offset="0.30839416"
 
1964
+         id="stop2968" />
 
1965
+      <stop
 
1966
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;"
 
1967
+         offset="0.75000000"
 
1968
+         id="stop2970" />
 
1969
+      <stop
 
1970
+         style="stop-color:#ffff00;stop-opacity:1.0000000;"
 
1971
+         offset="1.0000000"
 
1972
+         id="stop2972" />
 
1973
+    </linearGradient>
 
1974
+    <linearGradient
 
1975
+       id="linearGradient2954">
 
1976
+      <stop
 
1977
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
1978
+         offset="0.0000000"
 
1979
+         id="stop2956" />
 
1980
+      <stop
 
1981
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
1982
+         offset="0.39364964"
 
1983
+         id="stop2958" />
 
1984
+      <stop
 
1985
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
1986
+         offset="0.72036445"
 
1987
+         id="stop2960" />
 
1988
+      <stop
 
1989
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
1990
+         offset="1.0000000"
 
1991
+         id="stop2962" />
 
1992
+    </linearGradient>
 
1993
+    <linearGradient
 
1994
+       inkscape:collect="always"
 
1995
+       xlink:href="#linearGradient839"
 
1996
+       id="linearGradient2987"
 
1997
+       gradientUnits="userSpaceOnUse"
 
1998
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-182.1667,-25.68190)"
 
1999
+       x1="12.230590"
 
2000
+       y1="84.034923"
 
2001
+       x2="107.81382"
 
2002
+       y2="84.034923" />
 
2003
+    <linearGradient
 
2004
+       y2="0.50000000"
 
2005
+       x2="1.0000000"
 
2006
+       y1="0.50000000"
 
2007
+       x1="1.3267924e-17"
 
2008
+       id="linearGradient1418"
 
2009
+       xlink:href="#linearGradient839" />
 
2010
+    <linearGradient
 
2011
+       id="linearGradient1408">
 
2012
+      <stop
 
2013
+         id="stop1410"
 
2014
+         offset="0.0000000"
 
2015
+         style="stop-color:#00ff00;stop-opacity:1.0000000;" />
 
2016
+      <stop
 
2017
+         id="stop1412"
 
2018
+         offset="0.30839416"
 
2019
+         style="stop-color:#ff0000;stop-opacity:1.0000000;" />
 
2020
+      <stop
 
2021
+         id="stop1414"
 
2022
+         offset="0.75000000"
 
2023
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;" />
 
2024
+      <stop
 
2025
+         id="stop1416"
 
2026
+         offset="1.0000000"
 
2027
+         style="stop-color:#ffff00;stop-opacity:1.0000000;" />
 
2028
+    </linearGradient>
 
2029
+    <linearGradient
 
2030
+       id="linearGradient1397">
 
2031
+      <stop
 
2032
+         id="stop1399"
 
2033
+         offset="0.0000000"
 
2034
+         style="stop-color:#46a046;stop-opacity:1.0000000;" />
 
2035
+      <stop
 
2036
+         id="stop1401"
 
2037
+         offset="0.39364964"
 
2038
+         style="stop-color:#df421e;stop-opacity:1.0000000;" />
 
2039
+      <stop
 
2040
+         id="stop1403"
 
2041
+         offset="0.72036445"
 
2042
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;" />
 
2043
+      <stop
 
2044
+         id="stop1405"
 
2045
+         offset="1.0000000"
 
2046
+         style="stop-color:#eed680;stop-opacity:1.0000000;" />
 
2047
+    </linearGradient>
 
2048
+    <linearGradient
 
2049
+       y2="84.034923"
 
2050
+       x2="107.81382"
 
2051
+       y1="84.034923"
 
2052
+       x1="12.230590"
 
2053
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-194.7091,-13.83491)"
 
2054
+       gradientUnits="userSpaceOnUse"
 
2055
+       id="linearGradient1431"
 
2056
+       xlink:href="#linearGradient839"
 
2057
+       inkscape:collect="always" />
 
2058
+    <linearGradient
 
2059
+       xlink:href="#linearGradient839"
 
2060
+       id="linearGradient1430"
 
2061
+       x1="1.3267924e-17"
 
2062
+       y1="0.50000000"
 
2063
+       x2="1.0000000"
 
2064
+       y2="0.50000000" />
 
2065
+    <linearGradient
 
2066
+       id="linearGradient1419">
 
2067
+      <stop
 
2068
+         style="stop-color:#00ff00;stop-opacity:1.0000000;"
 
2069
+         offset="0.0000000"
 
2070
+         id="stop1422" />
 
2071
+      <stop
 
2072
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
 
2073
+         offset="0.30839416"
 
2074
+         id="stop1424" />
 
2075
+      <stop
 
2076
+         style="stop-color:#7f8cff;stop-opacity:1.0000000;"
 
2077
+         offset="0.75000000"
 
2078
+         id="stop1426" />
 
2079
+      <stop
 
2080
+         style="stop-color:#ffff00;stop-opacity:1.0000000;"
 
2081
+         offset="1.0000000"
 
2082
+         id="stop1428" />
 
2083
+    </linearGradient>
 
2084
+    <linearGradient
 
2085
+       id="linearGradient1409">
 
2086
+      <stop
 
2087
+         style="stop-color:#46a046;stop-opacity:1.0000000;"
 
2088
+         offset="0.0000000"
 
2089
+         id="stop1411" />
 
2090
+      <stop
 
2091
+         style="stop-color:#df421e;stop-opacity:1.0000000;"
 
2092
+         offset="0.39364964"
 
2093
+         id="stop1413" />
 
2094
+      <stop
 
2095
+         style="stop-color:#ada7c8;stop-opacity:1.0000000;"
 
2096
+         offset="0.72036445"
 
2097
+         id="stop1415" />
 
2098
+      <stop
 
2099
+         style="stop-color:#eed680;stop-opacity:1.0000000;"
 
2100
+         offset="1.0000000"
 
2101
+         id="stop1417" />
 
2102
+    </linearGradient>
 
2103
+    <linearGradient
 
2104
+       inkscape:collect="always"
 
2105
+       xlink:href="#linearGradient839"
 
2106
+       id="linearGradient1443"
 
2107
+       gradientUnits="userSpaceOnUse"
 
2108
+       gradientTransform="matrix(1.353569,0.000000,0.000000,0.738788,-178.4379,0.402376)"
 
2109
+       x1="12.230590"
 
2110
+       y1="84.034923"
 
2111
+       x2="107.81382"
 
2112
+       y2="84.034923" />
 
2113
+  </defs>
 
2114
+  <sodipodi:namedview
 
2115
+     inkscape:current-layer="svg1"
 
2116
+     inkscape:window-y="34"
 
2117
+     inkscape:window-x="0"
 
2118
+     gridspacingy="1.0000000mm"
 
2119
+     gridspacingx="1.0000000mm"
 
2120
+     snaptogrid="false"
 
2121
+     showgrid="true"
 
2122
+     inkscape:window-height="653"
 
2123
+     inkscape:window-width="756"
 
2124
+     inkscape:cy="80.000000"
 
2125
+     inkscape:cx="80.000000"
 
2126
+     inkscape:zoom="2.9500000"
 
2127
+     inkscape:pageshadow="2"
 
2128
+     inkscape:pageopacity="0.0"
 
2129
+     borderopacity="1.0"
 
2130
+     bordercolor="#666666"
 
2131
+     pagecolor="#ffffff"
 
2132
+     id="base" />
 
2133
+  <rect
 
2134
+     rx="22.892691"
 
2135
+     ry="22.892691"
 
2136
+     y="13.614116"
 
2137
+     x="20.782476"
 
2138
+     height="133.38696"
 
2139
+     width="117.75612"
 
2140
+     id="rect834"
 
2141
+     style="stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:0.49999997;stroke-linejoin:round;stroke-width:7.5000000;stroke:#000000;fill-rule:evenodd;fill:none" />
 
2142
+  <rect
 
2143
+     rx="22.892691"
 
2144
+     ry="22.892691"
 
2145
+     y="13.524447"
 
2146
+     x="20.643702"
 
2147
+     height="133.38696"
 
2148
+     width="117.75612"
 
2149
+     id="rect828"
 
2150
+     style="stroke-miterlimit:4.0000000;stroke-dasharray:none;fill:#df421e;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000" />
 
2151
+  <rect
 
2152
+     style="fill:url(#linearGradient1401);fill-rule:evenodd;stroke:#000000;stroke-width:3.2727857"
 
2153
+     id="rect832"
 
2154
+     width="113.74728"
 
2155
+     height="67.172066"
 
2156
+     ry="1.2896985"
 
2157
+     x="22.887306"
 
2158
+     y="30.619467"
 
2159
+     rx="1.2896985" />
 
2160
+  <path
 
2161
+     sodipodi:nodetypes="cccccc"
 
2162
+     id="path2838"
 
2163
+     d="M 117.38055,142.41910 L 41.662967,142.41910 C 30.018294,142.41910 24.316361,136.71717 24.316361,125.07250 C 24.316361,125.07250 51.936692,58.557014 134.72716,48.414718 L 134.72716,125.07250 C 134.72716,136.71717 129.02522,142.41910 117.38055,142.41910 z "
 
2164
+     style="stroke-width:6.2500000;stroke:none;fill-rule:evenodd;fill-opacity:0.27935222;fill:#ffffff" />
 
2165
+  <path
 
2166
+     sodipodi:nodetypes="cccccc"
 
2167
+     id="rect2063"
 
2168
+     d="M 41.662967,17.197108 L 117.38055,17.197108 C 129.02522,17.197108 134.72716,22.899041 134.72716,34.543716 C 134.72716,34.543716 55.440598,35.449314 24.316361,125.89213 L 24.316361,34.543716 C 24.316361,24.254973 31.374226,17.197108 41.662967,17.197108 z "
 
2169
+     style="fill:url(#linearGradient2830);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:6.2500000" />
 
2170
+  <path
 
2171
+     style="font-size:40.000000;stroke-width:1.0000000pt;font-family:Trek"
 
2172
+     d="M 106.47307,137.46646 C 102.25974,137.46646 99.019741,136.13312 96.753073,133.46646 C 94.513073,130.77312 93.393073,126.91979 93.393073,121.90646 C 93.393073,116.83979 94.513073,112.98646 96.753073,110.34646 C 98.993071,107.67979 102.23307,106.34646 106.47307,106.34646 L 123.23307,106.34646 L 123.23307,111.70646 L 108.47307,111.70646 C 105.91307,111.70646 103.99307,112.55979 102.71307,114.26646 C 101.43307,115.97312 100.79307,118.51979 100.79307,121.90646 C 100.79307,125.31979 101.39307,127.87979 102.59307,129.58646 C 103.79307,131.29312 105.75307,132.14646 108.47307,132.14646 L 116.59307,132.14646 L 116.59307,124.46646 L 107.83307,124.46646 L 107.83307,119.34646 L 123.23307,119.34646 L 123.23307,137.46646 L 106.47307,137.46646 z M 68.873071,126.34646 L 68.873071,137.46646 L 62.153071,137.46646 L 62.153071,106.34646 L 80.833073,106.34646 C 83.713073,106.34646 85.993073,107.19979 87.673073,108.90646 C 89.353073,110.58646 90.193073,113.06646 90.193073,116.34646 C 90.193073,119.59979 89.353073,122.07979 87.673073,123.78646 C 85.993073,125.49312 83.713073,126.34646 80.833073,126.34646 L 68.873071,126.34646 z M 68.873071,111.70646 L 68.873071,121.02646 L 77.793073,121.02646 C 79.259739,121.02646 80.459739,120.65312 81.393073,119.90646 C 82.326406,119.13312 82.793073,117.94646 82.793073,116.34646 C 82.793073,114.77312 82.326406,113.61312 81.393073,112.86646 C 80.486406,112.09312 79.286406,111.70646 77.793073,111.70646 L 68.873071,111.70646 z M 35.433071,137.46646 L 35.433071,132.14646 L 44.153071,132.14646 C 45.193071,132.14646 46.059741,132.01312 46.753071,131.74646 C 47.099741,131.63979 47.446401,131.47979 47.793071,131.26646 L 48.353071,130.86646 L 48.913071,130.34646 L 49.713071,129.42646 L 50.273071,128.34646 C 50.379741,127.94646 50.473071,127.51979 50.553071,127.06646 C 50.633071,126.61312 50.673071,126.17312 50.673071,125.74646 L 50.673071,106.34646 L 57.313071,106.34646 L 57.313071,126.18646 C 57.313071,128.07979 57.059741,129.77312 56.553071,131.26646 C 56.046401,132.73312 55.259741,133.91979 54.193071,134.82646 C 53.259741,135.65312 52.139741,136.31979 50.833071,136.82646 L 48.793071,137.30646 L 46.473071,137.46646 L 35.433071,137.46646 z "
 
2173
+     id="path853" />
 
2174
+  <path
 
2175
+     style="font-size:40.000000;fill:#ffffff;fill-opacity:1.0000000;stroke-width:1.0000000pt;font-family:Trek"
 
2176
+     d="M 105.79511,136.78850 C 101.58178,136.78850 98.341775,135.45516 96.075107,132.78850 C 93.835107,130.09516 92.715107,126.24183 92.715107,121.22850 C 92.715107,116.16183 93.835107,112.30850 96.075107,109.66850 C 98.315105,107.00183 101.55511,105.66850 105.79511,105.66850 L 122.55511,105.66850 L 122.55511,111.02850 L 107.79511,111.02850 C 105.23511,111.02850 103.31511,111.88183 102.03511,113.58850 C 100.75511,115.29516 100.11511,117.84183 100.11511,121.22850 C 100.11511,124.64183 100.71511,127.20183 101.91511,128.90850 C 103.11511,130.61516 105.07511,131.46850 107.79511,131.46850 L 115.91511,131.46850 L 115.91511,123.78850 L 107.15511,123.78850 L 107.15511,118.66850 L 122.55511,118.66850 L 122.55511,136.78850 L 105.79511,136.78850 z M 68.195105,125.66850 L 68.195105,136.78850 L 61.475105,136.78850 L 61.475105,105.66850 L 80.155107,105.66850 C 83.035107,105.66850 85.315107,106.52183 86.995107,108.22850 C 88.675107,109.90850 89.515107,112.38850 89.515107,115.66850 C 89.515107,118.92183 88.675107,121.40183 86.995107,123.10850 C 85.315107,124.81516 83.035107,125.66850 80.155107,125.66850 L 68.195105,125.66850 z M 68.195105,111.02850 L 68.195105,120.34850 L 77.115107,120.34850 C 78.581773,120.34850 79.781773,119.97516 80.715107,119.22850 C 81.648440,118.45516 82.115107,117.26850 82.115107,115.66850 C 82.115107,114.09516 81.648440,112.93516 80.715107,112.18850 C 79.808440,111.41516 78.608440,111.02850 77.115107,111.02850 L 68.195105,111.02850 z M 34.755105,136.78850 L 34.755105,131.46850 L 43.475105,131.46850 C 44.515105,131.46850 45.381775,131.33516 46.075105,131.06850 C 46.421775,130.96183 46.768435,130.80183 47.115105,130.58850 L 47.675105,130.18850 L 48.235105,129.66850 L 49.035105,128.74850 L 49.595105,127.66850 C 49.701775,127.26850 49.795105,126.84183 49.875105,126.38850 C 49.955105,125.93516 49.995105,125.49516 49.995105,125.06850 L 49.995105,105.66850 L 56.635105,105.66850 L 56.635105,125.50850 C 56.635105,127.40183 56.381775,129.09516 55.875105,130.58850 C 55.368435,132.05516 54.581775,133.24183 53.515105,134.14850 C 52.581775,134.97516 51.461775,135.64183 50.155105,136.14850 L 48.115105,136.62850 L 45.795105,136.78850 L 34.755105,136.78850 z "
 
2177
+     id="path1447" />
 
2178
+</svg>
 
2179
--- /dev/null
 
2180
+++ pyacidobasic-0.1/icons/title.svg
 
2181
@@ -0,0 +1,105 @@
 
2182
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
2183
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
 
2184
+
 
2185
+<svg
 
2186
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
 
2187
+   xmlns:cc="http://creativecommons.org/ns#"
 
2188
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
2189
+   xmlns:svg="http://www.w3.org/2000/svg"
 
2190
+   xmlns="http://www.w3.org/2000/svg"
 
2191
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 
2192
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 
2193
+   width="248.02858"
 
2194
+   height="239.45715"
 
2195
+   id="svg2"
 
2196
+   sodipodi:version="0.32"
 
2197
+   inkscape:version="0.47 r22583"
 
2198
+   sodipodi:docname="title.svg"
 
2199
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
 
2200
+   version="1.0"
 
2201
+   inkscape:export-filename="/home/georgesk/developpement/copytracker/copytracker-0.6-dfsg/images/plus.png"
 
2202
+   inkscape:export-xdpi="5"
 
2203
+   inkscape:export-ydpi="5">
 
2204
+  <defs
 
2205
+     id="defs4">
 
2206
+    <linearGradient
 
2207
+       id="linearGradient3611">
 
2208
+      <stop
 
2209
+         style="stop-color:#d7a33e;stop-opacity:1;"
 
2210
+         offset="0"
 
2211
+         id="stop3613" />
 
2212
+      <stop
 
2213
+         style="stop-color:#f8e9d6;stop-opacity:1;"
 
2214
+         offset="1"
 
2215
+         id="stop3615" />
 
2216
+    </linearGradient>
 
2217
+    <inkscape:perspective
 
2218
+       sodipodi:type="inkscape:persp3d"
 
2219
+       inkscape:vp_x="0 : 526.18109 : 1"
 
2220
+       inkscape:vp_y="0 : 1000 : 0"
 
2221
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
 
2222
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
 
2223
+       id="perspective10" />
 
2224
+  </defs>
 
2225
+  <sodipodi:namedview
 
2226
+     id="base"
 
2227
+     pagecolor="#ffffff"
 
2228
+     bordercolor="#666666"
 
2229
+     borderopacity="1.0"
 
2230
+     inkscape:pageopacity="0.0"
 
2231
+     inkscape:pageshadow="2"
 
2232
+     inkscape:zoom="0.7"
 
2233
+     inkscape:cx="446.9956"
 
2234
+     inkscape:cy="229.25014"
 
2235
+     inkscape:document-units="px"
 
2236
+     inkscape:current-layer="layer1"
 
2237
+     showgrid="false"
 
2238
+     inkscape:window-width="1118"
 
2239
+     inkscape:window-height="804"
 
2240
+     inkscape:window-x="300"
 
2241
+     inkscape:window-y="27"
 
2242
+     inkscape:window-maximized="0" />
 
2243
+  <metadata
 
2244
+     id="metadata7">
 
2245
+    <rdf:RDF>
 
2246
+      <cc:Work
 
2247
+         rdf:about="">
 
2248
+        <dc:format>image/svg+xml</dc:format>
 
2249
+        <dc:type
 
2250
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
2251
+        <dc:title />
 
2252
+      </cc:Work>
 
2253
+    </rdf:RDF>
 
2254
+  </metadata>
 
2255
+  <g
 
2256
+     inkscape:label="Calque 1"
 
2257
+     inkscape:groupmode="layer"
 
2258
+     id="layer1"
 
2259
+     transform="translate(-171.7,-289.77648)">
 
2260
+    <rect
 
2261
+       style="opacity:1;fill:#ffe29e;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
 
2262
+       id="rect2383"
 
2263
+       width="231.42857"
 
2264
+       height="222.85715"
 
2265
+       x="180"
 
2266
+       y="298.07648"
 
2267
+       ry="71.428574"
 
2268
+       inkscape:export-filename="/home/georgesk/developpement/copytracker/copytracker-0.6-dfsg/images/plus.png"
 
2269
+       inkscape:export-xdpi="5.8057823"
 
2270
+       inkscape:export-ydpi="5.8057823"
 
2271
+       rx="71.428574" />
 
2272
+    <path
 
2273
+       style="fill:#eab515;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;stroke-dasharray:none"
 
2274
+       d="m 394.73676,398.11727 c 0,34.98668 -44.53215,63.34899 -99.46534,63.34899 -13.7333,0 -26.81654,-1.77265 -38.71641,-4.97828 -5.94993,-1.60281 -19.3605,14.79815 -51.11535,18.948 12.95893,-15.58932 23.99905,-29.65823 19.49913,-32.52421 -17.99969,-11.46391 -29.13272,-27.30116 -29.13272,-44.7945 0,-34.98667 44.53215,-63.34897 99.46535,-63.34897 54.93319,0 99.46534,28.3623 99.46534,63.34897 z"
 
2275
+       id="path2836"
 
2276
+       sodipodi:nodetypes="csscsssc" />
 
2277
+    <g
 
2278
+       style="font-size:144px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:OpenSymbol;-inkscape-font-specification:OpenSymbol"
 
2279
+       id="text3619">
 
2280
+      <path
 
2281
+         d="m 263.15761,450.99146 6.04687,-29.95313 -11.8125,0 0,-10.54687 13.99219,0 5.20313,-25.45313 -19.19532,0 0,-10.54687 21.375,0 6.1875,-30.09375 10.33594,0 -6.04687,30.09375 22.14843,0 6.25782,-30.09375 10.47656,0 -6.1875,30.09375 12.23437,0 0,10.54687 -14.27343,0 -5.27344,25.45313 19.54687,0 0,10.54687 -21.58593,0 -6.04688,29.95313 -10.6875,0 6.04688,-29.95313 -22.00782,0 -6.04687,29.95313 -10.6875,0 m 18.77344,-40.5 22.14843,0 5.20313,-25.45313 -22.07813,0 -5.27343,25.45313"
 
2282
+         style=""
 
2283
+         id="path3624" />
 
2284
+    </g>
 
2285
+  </g>
 
2286
+</svg>
 
2287
--- /dev/null
 
2288
+++ pyacidobasic-0.1/icons/pyacidobasic.svg
 
2289
@@ -0,0 +1,126 @@
 
2290
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 
2291
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
 
2292
+
 
2293
+<svg
 
2294
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
 
2295
+   xmlns:cc="http://creativecommons.org/ns#"
 
2296
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
2297
+   xmlns:svg="http://www.w3.org/2000/svg"
 
2298
+   xmlns="http://www.w3.org/2000/svg"
 
2299
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
 
2300
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
 
2301
+   width="248.02858"
 
2302
+   height="239.45715"
 
2303
+   id="svg2"
 
2304
+   sodipodi:version="0.32"
 
2305
+   inkscape:version="0.47 r22583"
 
2306
+   sodipodi:docname="pyacidobasic.svg"
 
2307
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
 
2308
+   version="1.0"
 
2309
+   inkscape:export-filename="/home/georgesk/developpement/copytracker/copytracker-0.6-dfsg/images/minus.png"
 
2310
+   inkscape:export-xdpi="5"
 
2311
+   inkscape:export-ydpi="5">
 
2312
+  <defs
 
2313
+     id="defs4">
 
2314
+    <inkscape:perspective
 
2315
+       sodipodi:type="inkscape:persp3d"
 
2316
+       inkscape:vp_x="0 : 526.18109 : 1"
 
2317
+       inkscape:vp_y="0 : 1000 : 0"
 
2318
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
 
2319
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
 
2320
+       id="perspective10" />
 
2321
+    <inkscape:perspective
 
2322
+       id="perspective2907"
 
2323
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
2324
+       inkscape:vp_z="1 : 0.5 : 1"
 
2325
+       inkscape:vp_y="0 : 1000 : 0"
 
2326
+       inkscape:vp_x="0 : 0.5 : 1"
 
2327
+       sodipodi:type="inkscape:persp3d" />
 
2328
+    <inkscape:perspective
 
2329
+       id="perspective3058"
 
2330
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
2331
+       inkscape:vp_z="1 : 0.5 : 1"
 
2332
+       inkscape:vp_y="0 : 1000 : 0"
 
2333
+       inkscape:vp_x="0 : 0.5 : 1"
 
2334
+       sodipodi:type="inkscape:persp3d" />
 
2335
+    <inkscape:perspective
 
2336
+       id="perspective3082"
 
2337
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
 
2338
+       inkscape:vp_z="1 : 0.5 : 1"
 
2339
+       inkscape:vp_y="0 : 1000 : 0"
 
2340
+       inkscape:vp_x="0 : 0.5 : 1"
 
2341
+       sodipodi:type="inkscape:persp3d" />
 
2342
+  </defs>
 
2343
+  <sodipodi:namedview
 
2344
+     id="base"
 
2345
+     pagecolor="#ffffff"
 
2346
+     bordercolor="#666666"
 
2347
+     borderopacity="1.0"
 
2348
+     inkscape:pageopacity="0.0"
 
2349
+     inkscape:pageshadow="2"
 
2350
+     inkscape:zoom="1.3642663"
 
2351
+     inkscape:cx="-17.335709"
 
2352
+     inkscape:cy="111.86955"
 
2353
+     inkscape:document-units="px"
 
2354
+     inkscape:current-layer="layer1"
 
2355
+     showgrid="false"
 
2356
+     inkscape:window-width="1680"
 
2357
+     inkscape:window-height="973"
 
2358
+     inkscape:window-x="0"
 
2359
+     inkscape:window-y="27"
 
2360
+     inkscape:window-maximized="1" />
 
2361
+  <metadata
 
2362
+     id="metadata7">
 
2363
+    <rdf:RDF>
 
2364
+      <cc:Work
 
2365
+         rdf:about="">
 
2366
+        <dc:format>image/svg+xml</dc:format>
 
2367
+        <dc:type
 
2368
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
 
2369
+        <dc:title />
 
2370
+      </cc:Work>
 
2371
+    </rdf:RDF>
 
2372
+  </metadata>
 
2373
+  <g
 
2374
+     inkscape:label="Calque 1"
 
2375
+     inkscape:groupmode="layer"
 
2376
+     id="layer1"
 
2377
+     transform="translate(-171.7,-289.77648)">
 
2378
+    <rect
 
2379
+       style="fill:#ffe29e;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
 
2380
+       id="rect2383"
 
2381
+       width="231.42857"
 
2382
+       height="222.85715"
 
2383
+       x="180.59482"
 
2384
+       y="298.3269"
 
2385
+       ry="71.428574"
 
2386
+       inkscape:export-filename="/home/georgesk/developpement/copytracker/copytracker-0.6-dfsg/images/minus.png"
 
2387
+       inkscape:export-xdpi="5.0800595"
 
2388
+       inkscape:export-ydpi="5.0800595"
 
2389
+       rx="71.428574" />
 
2390
+    <g
 
2391
+       id="g3064"
 
2392
+       transform="matrix(1.1707544,0,0,1.1707544,317.27714,-229.09309)">
 
2393
+      <path
 
2394
+         style="fill:#51a3b5;fill-opacity:1"
 
2395
+         d="m -78.425994,632.60956 c -0.240624,-0.4125 -1.01691,-4.70277 -1.72508,-9.53394 -0.996776,-6.80004 -1.018318,-9.0532 -0.09538,-9.97614 0.674235,-0.67423 5.416871,-1.4198 10.916063,-1.71606 5.348125,-0.28812 10.286361,-0.88792 10.973861,-1.33288 0.981924,-0.63551 1.25,-17.09535 1.25,-76.75 l 0,-75.94098 6,0 6,0 0,76.54569 0,76.54569 6.75,-0.29569 6.75,-0.29569 0.5,-31.0981 c 0.376811,-23.4362 0.820175,-31.48344 1.799528,-32.66214 2.50168,-3.01089 20.024592,-5.54072 20.915862,-3.01967 0.66185,1.87212 -5.759635,5.27198 -9.96539,5.27617 -2.613037,0.003 -3.75,0.44479 -3.75,1.45843 0,0.90711 1.411565,1.68164 3.75,2.05761 7.2276,1.16206 8.25,1.53775 8.25,3.0315 0,2.38672 -4.284051,3.48873 -8.514735,2.1903 -6.305071,-1.93509 -6.485265,-1.15506 -6.485265,28.07366 l 0,25.4255 2.25,-0.66335 c 6.672957,-1.96735 21.91204,-2.90209 29.90636,-1.83441 4.589,0.61289 8.63611,0.81062 8.99358,0.43942 0.35746,-0.37121 0.97295,-12.03742 1.36776,-25.92492 l 0.71782,-25.25 -5.99531,0 c -9.40415,0 -10.80092,-3.87531 -1.99021,-5.5218 4.41972,-0.82593 4.86082,-2.183 1,-3.07657 -6.88333,-1.5931 -12.25,-3.73981 -12.25,-4.9001 0,-1.75577 3.73403,-2.56194 8.5,-1.83514 8.05523,1.2284 22.48323,9.35132 22.50901,12.6725 0.005,0.63861 -1.3968,2.31676 -3.11502,3.72923 -2.84765,2.34091 -3.19256,3.26794 -3.89854,10.47837 -1.04537,10.67662 -0.0376,40.73563 1.3976,41.6882 0.60882,0.40408 3.4196,0.74158 6.24617,0.75 7.31615,0.0218 9.11514,1.83738 11.43753,11.54299 1.04921,4.38478 1.91116,8.53482 1.91545,9.22232 0.006,0.98641 -12.8429,1.25 -60.933183,1.25 -33.517541,0 -61.137857,-0.3375 -61.378481,-0.75 z M -4.51324,534.18929 c -1.19303,-1.70329 -1.59329,-4.72216 -1.59329,-12.01705 0,-11.22043 -0.43594,-11.81268 -8.694934,-11.81268 -4.063096,0 -5.892274,-0.71503 -11.565742,-4.52106 -3.706628,-2.48659 -6.739324,-5.14171 -6.739324,-5.90026 0,-0.84044 2.050827,-1.86121 5.25,-2.61313 2.8875,-0.67866 6.6,-1.93749 8.25,-2.79741 1.65,-0.85991 5.025,-1.81202 7.5,-2.11581 l 4.5,-0.55233 0.28344,-10.11056 c 0.1559,-5.56081 -0.10026,-13.32331 -0.56924,-17.25 l -0.85269,-7.13944 7.88663,0 c 7.03308,0 7.83304,0.1894 7.3914,1.75 -2.40278,8.49054 -4.71833,21.61205 -4.45852,25.26504 l 0.31898,4.48496 6,0.2574 c 8.82425,0.37856 10.09775,0.87516 11.88092,4.63289 2.24938,4.74023 2.04623,6.33641 -1.22251,9.60514 -2.0395,2.0395 -4.60256,3.18804 -9.08022,4.06897 -7.57034,1.48937 -8.07197,2.40367 -8.09293,14.7507 -0.02,11.79653 -2.83658,17.09066 -6.39197,12.01463 z M 7.89347,501.35956 c 2.37251,-2.37251 2.48665,-3.35122 0.5758,-4.93709 -1.65419,-1.37285 -7.53785,-0.54237 -10.26016,1.44824 -1.71349,1.25293 -1.70916,1.39654 0.10262,3.39853 2.40359,2.65594 6.97305,2.69901 9.58174,0.0903 z"
 
2396
+         id="path3070" />
 
2397
+      <path
 
2398
+         style="fill:#e825df;fill-opacity:1"
 
2399
+         d="m -55.729077,622.10956 c 0.348895,-6.1875 0.917252,-45.7875 1.263015,-88 l 0.62866,-76.75 3.199326,0 3.199325,0 -0.08389,67.75 c -0.04614,37.2625 0.277241,76.8625 0.718622,88 l 0.802513,20.25 -5.180964,0 -5.180963,0 0.634355,-11.25 z m 37.340049,6.15842 c -8.614426,-2.02846 -11.717502,-5.03227 -11.717502,-11.34268 0,-3.18931 0.678885,-4.00814 3.096843,-3.73521 0.328263,0.037 4.603263,-0.58295 9.5,-1.37778 10.585777,-1.71826 20.393847,-1.7538 25.903157,-0.0939 4.88186,1.47089 5.22708,3.80815 0.69925,4.73419 -4.30396,0.88026 -4.58433,1.25142 -3.47055,4.59442 1.47413,4.42458 3.64812,3.90083 8.85833,-2.13415 2.63693,-3.05434 5.38359,-5.55335 6.1037,-5.55335 2.75613,0 0.5606,10.30584 -2.44091,11.45763 -0.88573,0.33989 -5.57452,1.50096 -10.41953,2.58017 -9.18122,2.04508 -19.64372,2.39391 -26.112788,0.87062 z m 14.782498,-7.90842 c 0.33992,-0.55 -0.0835,-1 -0.94098,-1 -0.85746,0 -1.55902,0.45 -1.55902,1 0,0.55 0.42344,1 0.94098,1 0.51754,0 1.2191,-0.45 1.55902,-1 z m 0.0359,-86.94195 c -0.35609,-0.57614 -0.9152,-5.77612 -1.24249,-11.55551 -0.59911,-10.57944 -1.13073,-11.98281 -4.79341,-12.65361 -1.59755,-0.29259 -2.10061,-1.37067 -2.5,-5.35761 -0.459304,-4.58507 -0.728654,-5.01754 -3.309286,-5.31346 -3.340305,-0.38304 -3.095663,-2.16442 0.540844,-3.9382 3.446312,-1.681 7.481102,-0.12561 8.821842,3.40078 0.55964,1.47197 2.35157,4.1957 3.98206,6.05273 2.69311,3.06729 2.95384,3.99125 2.84766,10.09163 -0.26842,15.42078 -1.99562,23.07825 -4.34724,19.27325 z m 12.4641,-28.99903 c 0,-0.51754 0.45,-1.2191 1,-1.55902 1.97943,-1.22335 1.05263,-6.37026 -1.58799,-8.81878 -2.17774,-2.01932 -2.33452,-2.49698 -0.98906,-3.01328 2.07823,-0.79749 7.28282,0.25515 8.4181,1.70257 0.48725,0.62122 1.17346,3.01569 1.5249,5.32105 0.54923,3.60275 0.32644,4.41049 -1.58598,5.75 -2.44444,1.71216 -6.77997,2.10699 -6.77997,0.61746 z M -4.53273,494.1797 c -0.2295,-0.72608 -0.68211,-7.84514 -1.0058,-15.82014 -0.3237,-7.975 -0.85999,-15.9625 -1.19177,-17.75 -0.58762,-3.16591 -0.51206,-3.25 2.9205,-3.25 l 3.52373,0 0.65727,8.25 c 0.36149,4.5375 0.51439,12.975 0.33977,18.75 C 0.4079,494.38232 0.291,494.87411 -1.861,495.1797 c -1.23996,0.17607 -2.44224,-0.27393 -2.67173,-1 z"
 
2400
+         id="path3068" />
 
2401
+    </g>
 
2402
+    <rect
 
2403
+       style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:16.60000038000000089;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
 
2404
+       id="rect2383-2"
 
2405
+       width="231.42857"
 
2406
+       height="222.85715"
 
2407
+       x="180.59482"
 
2408
+       y="298.3269"
 
2409
+       ry="71.428574"
 
2410
+       inkscape:export-filename="/home/georgesk/developpement/copytracker/copytracker-0.6-dfsg/images/minus.png"
 
2411
+       inkscape:export-xdpi="5.0800595"
 
2412
+       inkscape:export-ydpi="5.0800595"
 
2413
+       rx="71.428574" />
 
2414
+  </g>
 
2415
+</svg>