itkdb-gtk 0.0.3__py3-none-any.whl → 0.20.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. itkdb_gtk/{sendShipments.py → CreateShipments.py} +74 -78
  2. itkdb_gtk/{getShipments.py → GetShipments.py} +99 -106
  3. itkdb_gtk/GlueWeight.py +45 -66
  4. itkdb_gtk/ITkDB.desktop +8 -0
  5. itkdb_gtk/ITkDB.svg +380 -0
  6. itkdb_gtk/ITkDBlogin.py +10 -6
  7. itkdb_gtk/ITkDButils.py +295 -57
  8. itkdb_gtk/PanelVisualInspection.py +590 -0
  9. itkdb_gtk/QRScanner.py +120 -0
  10. itkdb_gtk/SensorUtils.py +492 -0
  11. itkdb_gtk/ShowAttachments.py +267 -0
  12. itkdb_gtk/ShowComments.py +94 -0
  13. itkdb_gtk/ShowDefects.py +103 -0
  14. itkdb_gtk/UploadModuleIV.py +566 -0
  15. itkdb_gtk/UploadMultipleTests.py +746 -0
  16. itkdb_gtk/UploadTest.py +509 -0
  17. itkdb_gtk/VisualInspection.py +297 -0
  18. itkdb_gtk/WireBondGui.py +1304 -0
  19. itkdb_gtk/__init__.py +38 -12
  20. itkdb_gtk/dashBoard.py +292 -33
  21. itkdb_gtk/dbGtkUtils.py +356 -75
  22. itkdb_gtk/findComponent.py +242 -0
  23. itkdb_gtk/findVTRx.py +36 -0
  24. itkdb_gtk/readGoogleSheet.py +1 -2
  25. itkdb_gtk/untrash_component.py +35 -0
  26. {itkdb_gtk-0.0.3.dist-info → itkdb_gtk-0.20.1.dist-info}/METADATA +21 -12
  27. itkdb_gtk-0.20.1.dist-info/RECORD +30 -0
  28. {itkdb_gtk-0.0.3.dist-info → itkdb_gtk-0.20.1.dist-info}/WHEEL +1 -1
  29. itkdb_gtk-0.20.1.dist-info/entry_points.txt +12 -0
  30. itkdb_gtk/checkComponent.py +0 -131
  31. itkdb_gtk/groundingTest.py +0 -225
  32. itkdb_gtk/readAVSdata.py +0 -565
  33. itkdb_gtk/uploadPetalInformation.py +0 -604
  34. itkdb_gtk/uploadTest.py +0 -384
  35. itkdb_gtk-0.0.3.dist-info/RECORD +0 -19
  36. itkdb_gtk-0.0.3.dist-info/entry_points.txt +0 -7
  37. {itkdb_gtk-0.0.3.dist-info → itkdb_gtk-0.20.1.dist-info}/top_level.txt +0 -0
itkdb_gtk/GlueWeight.py CHANGED
@@ -7,11 +7,15 @@ from copy import deepcopy
7
7
  from pathlib import Path
8
8
 
9
9
  try:
10
- import dbGtkUtils
11
- import ITkDBlogin
12
- import ITkDButils
13
- except ModuleNotFoundError:
14
- from itkdb_gtk import dbGtkUtils, ITkDBlogin, ITkDButils
10
+ import itkdb_gtk
11
+
12
+ except ImportError:
13
+ cwd = Path(__file__).parent.parent
14
+ sys.path.append(cwd.as_posix())
15
+
16
+ from itkdb_gtk import dbGtkUtils, ITkDBlogin, ITkDButils, UploadMultipleTests
17
+ HELP_LINK="https://itkdb-gtk.docs.cern.ch"
18
+
15
19
 
16
20
  import gi
17
21
  gi.require_version("Gtk", "3.0")
@@ -30,12 +34,10 @@ def find_module(ifile, module_sn="MODULE_SN"):
30
34
  """Find the starting line of a module.
31
35
 
32
36
  Args:
33
- ----
34
37
  ifile: the input file object.
35
38
  module_sn: tag t ostar t a new module.
36
39
 
37
- Return:
38
- ------
40
+ Returns:
39
41
  the SN of the module.
40
42
 
41
43
  """
@@ -64,12 +66,10 @@ def remove_defaul_keys(data, default_value=-9999):
64
66
  """Remove keys with deafault value.
65
67
 
66
68
  Args:
67
- ----
68
69
  data: Input dictionary
69
70
  default_value: Defaultvalue. Defaults to -9999.
70
71
 
71
- Returns
72
- -------
72
+ Returns:
73
73
  data: trimmed dictionary
74
74
 
75
75
  """
@@ -84,19 +84,17 @@ def remove_defaul_keys(data, default_value=-9999):
84
84
  return data
85
85
 
86
86
 
87
- class GlueWeight(Gtk.Window):
87
+ class GlueWeight(dbGtkUtils.ITkDBWindow):
88
88
  """Upluead Glue Weight test."""
89
89
 
90
- def __init__(self, session, ifile=None):
90
+ def __init__(self, session, ifile=None, help_link=None):
91
91
  """Initialization.
92
92
 
93
93
  Args:
94
- ----
95
94
  session: ITkDB session_
96
95
  ifile (optional): Input file. Defaults to None.
97
96
 
98
97
  """
99
- global gtk_runs
100
98
  self.ifile = ifile
101
99
  self.session = session
102
100
  self.modules = []
@@ -114,34 +112,24 @@ class GlueWeight(Gtk.Window):
114
112
  self.skeleton = ITkDButils.get_test_skeleton(
115
113
  session, "MODULE", "GLUE_WEIGHT", defaults)
116
114
 
115
+ global gtk_runs
117
116
  if gtk_runs:
118
- super().__init__(title="Upload AVS Data")
117
+ super().__init__(session=session,
118
+ title="Upload Glue Weight",
119
+ help_link=help_link)
119
120
  self.init_window()
121
+ else:
122
+ self.pdb_user = ITkDButils.get_db_user(session)
120
123
 
121
124
  def init_window(self):
122
125
  """Initialize window."""
123
126
  #
124
127
  # Prepare HeaderBar
125
- hb = Gtk.HeaderBar()
126
- hb.set_show_close_button(True)
127
- hb.props.title = "DB Upload Module Glue Weight"
128
- self.set_titlebar(hb)
129
-
130
- button = Gtk.Button()
131
- icon = Gio.ThemedIcon(name="document-send-symbolic")
132
- image = Gtk.Image.new_from_gicon(icon, Gtk.IconSize.BUTTON)
133
- button.add(image)
134
- button.set_tooltip_text("Click to upload test shown in notebook.")
135
- button.connect("clicked", self.upload_current_test)
136
- hb.pack_end(button)
137
-
138
- self.userLabel = Gtk.Label()
139
- self.userLabel.set_text(self.session.user.name)
140
- hb.pack_start(self.userLabel)
141
-
142
- # Create main content box
143
- self.mainBox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
144
- self.add(self.mainBox)
128
+ self.set_border_width(10)
129
+
130
+ # Prepare HeaderBar
131
+ self.hb.props.title = "Glue height"
132
+
145
133
  # file entry and search button
146
134
  self.file_name = Gtk.FileChooserButton()
147
135
  self.file_name.connect("file-set", self.on_file_set)
@@ -169,6 +157,11 @@ class GlueWeight(Gtk.Window):
169
157
  self.modules = self.parse_file(self.ifile)
170
158
  self.populate_notebook()
171
159
 
160
+
161
+
162
+ # The text view
163
+ self.mainBox.pack_end(self.message_panel.frame, True, True, 5)
164
+
172
165
  # The button box
173
166
  btnBox = Gtk.ButtonBox(orientation=Gtk.Orientation.HORIZONTAL)
174
167
  self.buttons = []
@@ -185,30 +178,19 @@ class GlueWeight(Gtk.Window):
185
178
  self.buttons.append(btn)
186
179
  btnBox.add(btn)
187
180
 
188
- btn = Gtk.Button(label="Quit")
189
- btn.connect("clicked", self.quit)
190
- btnBox.add(btn)
191
-
192
181
  self.mainBox.pack_start(btnBox, False, True, 0)
193
182
 
194
183
  self.show_all()
195
184
 
196
- def quit(self, *args):
197
- """Quits the application."""
198
- self.hide()
199
- self.destroy()
200
-
201
185
  def create_test_window(self, test_json, test_name, label):
202
186
  """Create the dialog for a DB test and add it to the notebook.
203
187
 
204
188
  Args:
205
- ----
206
189
  test_json: The JSon-like dict with the values
207
190
  test_name: The name of the test for internal indexing
208
191
  label: The label for the Notebook
209
192
 
210
- Return:
211
- ------
193
+ Returns:
212
194
  The box containing the data.
213
195
 
214
196
  """
@@ -261,19 +243,17 @@ class GlueWeight(Gtk.Window):
261
243
 
262
244
  def read_file(self, path):
263
245
  """Parse file."""
264
- with open(path, "r") as ifile:
246
+ with open(path, "r", encoding="UTF-8") as ifile:
265
247
  self.modules = self.parse_file(ifile)
266
248
 
267
249
  def parse_file(self, ifile, module_sep="MODULE_SN"):
268
250
  """Parse a data file.
269
251
 
270
252
  Args:
271
- ----
272
253
  ifile (): A file object.
273
254
  module_sep: tag to idenntify a new module.
274
255
 
275
- Returns
276
- -------
256
+ Returns:
277
257
  a list of tests (json)
278
258
 
279
259
  """
@@ -352,22 +332,20 @@ class GlueWeight(Gtk.Window):
352
332
 
353
333
  def upload_tests(self):
354
334
  """Upload tests to DB."""
355
- if len(self.test_list):
335
+ W = UploadMultipleTests.UploadMultipleTests(
336
+ self.session,
337
+ help_link="{}/uploadMultipleTests.html".format(HELP_LINK)
338
+ )
339
+
340
+ if len(self.test_list)>0:
356
341
  for G in self.test_list:
357
342
  m = G.values
358
- print("### Uploading {} for module {}".format(m["testType"], m["component"]))
359
- resp = ITkDButils.upload_test(session, m)
360
-
361
- if resp is not None:
362
- print(resp)
343
+ W.add_test_data_to_view(m)
344
+
363
345
 
364
346
  else:
365
347
  for m in self.modules:
366
- print("### Uploading {} for module {}".format(m["testType"], m["component"]))
367
- resp = ITkDButils.upload_test(session, m)
368
-
369
- if resp is not None:
370
- print(resp)
348
+ W.add_test_data_to_view(m)
371
349
 
372
350
 
373
351
  def main():
@@ -392,7 +370,7 @@ def main():
392
370
 
393
371
  else:
394
372
  try:
395
- ifile = open(options.files[0], 'r')
373
+ ifile = open(options.files[0], 'r') if len(options.files)>0 else None
396
374
 
397
375
  except Exception as e:
398
376
  print(e)
@@ -405,7 +383,7 @@ def main():
405
383
  print("Could not connect to DB with provided credentials.")
406
384
  sys.exit()
407
385
 
408
- GW = GlueWeight(session, ifile)
386
+ GW = GlueWeight(session, ifile, help_link=HELP_LINK)
409
387
  if gtk_runs:
410
388
  GW.show_all()
411
389
  GW.set_accept_focus(True)
@@ -425,6 +403,7 @@ def main():
425
403
  ifile.close()
426
404
 
427
405
  dlg.die()
428
-
406
+
407
+
429
408
  if __name__ == "__main__":
430
409
  main()
@@ -0,0 +1,8 @@
1
+ [Desktop Entry]
2
+ X-Desktop-File-Install-Version=0.24
3
+ Name=ITkDB Gtk
4
+ Comment=ITk PDB python
5
+ Categories=Database;Development;
6
+ Exec=itkdb_dashBoard
7
+ Icon=ITkDB
8
+ Type=Application
itkdb_gtk/ITkDB.svg ADDED
@@ -0,0 +1,380 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+
4
+ <svg
5
+ version="1.1"
6
+ id="Capa_1"
7
+ x="0px"
8
+ y="0px"
9
+ viewBox="0 0 75 60.000001"
10
+ xml:space="preserve"
11
+ sodipodi:docname="ITkDB.svg"
12
+ width="75"
13
+ height="60"
14
+ inkscape:version="1.3.2 (091e20e, 2023-11-25)"
15
+ inkscape:export-filename="ITkDB.png"
16
+ inkscape:export-xdpi="96"
17
+ inkscape:export-ydpi="96"
18
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
19
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
20
+ xmlns="http://www.w3.org/2000/svg"
21
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
22
+ id="defs177"><clipPath
23
+ id="clipPath16"
24
+ clipPathUnits="userSpaceOnUse"><path
25
+ id="path18"
26
+ d="M 0,612 H 792 V 0 H 0 Z" /></clipPath><clipPath
27
+ id="clipPath48"
28
+ clipPathUnits="userSpaceOnUse"><path
29
+ id="path50"
30
+ d="M 0,612 H 792 V 0 H 0 Z" /></clipPath><clipPath
31
+ id="clipPath108"
32
+ clipPathUnits="userSpaceOnUse"><path
33
+ id="path110"
34
+ d="M 0,612 H 792 V 0 H 0 Z" /></clipPath></defs><sodipodi:namedview
35
+ id="namedview175"
36
+ pagecolor="#ffffff"
37
+ bordercolor="#666666"
38
+ borderopacity="1.0"
39
+ inkscape:showpageshadow="2"
40
+ inkscape:pageopacity="0.0"
41
+ inkscape:pagecheckerboard="0"
42
+ inkscape:deskcolor="#d1d1d1"
43
+ showgrid="false"
44
+ inkscape:zoom="10.143094"
45
+ inkscape:cx="38.794869"
46
+ inkscape:cy="18.929135"
47
+ inkscape:current-layer="g9542"
48
+ inkscape:window-width="1368"
49
+ inkscape:window-height="1087"
50
+ inkscape:window-x="0"
51
+ inkscape:window-y="44"
52
+ inkscape:window-maximized="0" />
53
+ <g
54
+ id="g142"
55
+ transform="translate(14.828749,-1.5740459)">
56
+
57
+
58
+
59
+
60
+
61
+ <g
62
+ id="g9542"
63
+ transform="translate(2.5745,2.4735459)"><g
64
+ id="g9662"><path
65
+ d="m 52.524,45.537 c -0.429,-4.107 -3.852,-7.332 -7.953,-7.332 -2.564,0 -4.984,1.286 -6.48,3.402 -0.291,-0.051 -0.586,-0.076 -0.883,-0.076 -2.32,0 -4.381,1.577 -5.066,3.813 -1.907,1.131 -3.116,3.241 -3.116,5.502 0,3.507 2.785,6.359 6.208,6.359 h 10.774 c 0.06,0 0.118,-0.004 0.171,-0.008 0.062,0.004 0.124,0.008 0.188,0.008 h 4.31 c 3.225,0 5.849,-2.687 5.849,-5.989 -0.001,-2.6 -1.642,-4.874 -4.002,-5.679 z m -1.847,9.668 -4.352,-0.003 -0.17,-0.006 -10.922,0.009 c -2.32,0 -4.208,-1.956 -4.208,-4.359 0,-1.665 0.949,-3.21 2.417,-3.935 l 0.435,-0.214 0.102,-0.475 c 0.331,-1.56 1.689,-2.691 3.229,-2.691 0.345,0 0.688,0.057 1.02,0.168 l 0.777,0.261 0.408,-0.711 c 1.096,-1.906 3.024,-3.044 5.158,-3.044 3.265,0 5.955,2.747 5.998,6.123 l 0.011,0.813 0.799,0.155 c 1.823,0.354 3.146,2.002 3.146,3.919 0,2.2 -1.726,3.99 -3.848,3.99 z"
66
+ id="path132" /><path
67
+ d="m 29.875,43.044 c 1.363,-2.618 3.96,-4.337 6.872,-4.5 2.066,-2.127 4.894,-3.339 7.824,-3.339 2.531,0 4.916,0.916 6.818,2.455 0.095,-0.087 0.203,-0.173 0.287,-0.26 v -1.289 -0.5 -0.5 V 28 c -1.318,0.905 -3.028,1.697 -5.025,2.367 -4.21,1.472 -10.048,2.502 -17.369,2.703 -0.87,0.027 -1.74,0.041 -2.606,0.041 -0.869,0 -1.742,-0.014 -2.614,-0.042 C 16.721,32.868 10.871,31.831 6.659,30.352 4.68,29.685 2.984,28.899 1.676,28 v 7.111 0.5 0.5 1.289 c 2.846,2.971 12.394,5.711 25,5.711 1.093,0 2.154,-0.028 3.199,-0.067 z"
68
+ id="path134" /><path
69
+ d="m 24.311,29.965 c 0.326,0.009 0.651,0.018 0.982,0.023 0.456,0.008 0.917,0.012 1.383,0.012 0.466,0 0.926,-0.004 1.383,-0.011 0.33,-0.005 0.656,-0.015 0.982,-0.023 0.116,-0.003 0.234,-0.005 0.349,-0.008 11.253,-0.359 19.648,-2.915 22.286,-5.668 V 23 22.5 22 14.889 C 46.808,18.232 36.52,20 26.676,20 16.832,20 6.543,18.232 1.676,14.889 V 22 22.5 23 24.289 c 2.638,2.754 11.033,5.31 22.286,5.668 0.115,0.003 0.233,0.005 0.349,0.008 z"
70
+ id="path136" /><path
71
+ d="M 51.676,11.306 V 9.5 9 C 51.676,8.832 51.62,8.681 51.541,8.542 50.418,4.241 41.791,0 26.676,0 11.598,0 2.979,4.22 1.822,8.51 1.737,8.657 1.676,8.818 1.676,9 v 0.5 1.806 c 2.836,2.961 12.316,5.694 25,5.694 12.684,0 22.163,-2.733 25,-5.694 z"
72
+ id="path138" /><path
73
+ d="m 26.025,50.845 c 0,-1.652 0.451,-3.249 1.249,-4.651 -0.201,10e-4 -0.395,0.007 -0.599,0.007 -12.346,0 -20.866,-2.29 -25,-5.201 v 8.201 c 0,0.162 0.043,0.315 0.117,0.451 1.181,4.895 11.747,8.549 24.883,8.549 0.95,0 1.881,-0.024 2.801,-0.062 -2.1,-1.717 -3.451,-4.347 -3.451,-7.294 z"
74
+ id="path140" /></g><g
75
+ transform="matrix(0,-0.41018932,-0.39313542,0,218.86576,318.19144)"
76
+ id="g10"
77
+ style="fill:#0000ff"><g
78
+ id="g12"
79
+ style="fill:#0000ff"><g
80
+ clip-path="url(#clipPath16)"
81
+ id="g14"
82
+ style="fill:#0000ff"><g
83
+ transform="translate(708.3047,566.0752)"
84
+ id="g20"
85
+ style="fill:#0000ff"><path
86
+ id="path22"
87
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
88
+ d="m 0,0 c 0.042,-1.523 -0.477,-2.762 -1.552,-3.71 -1.077,-0.947 -2.595,-1.483 -4.56,-1.606 -1.808,-0.116 -3.414,0.125 -4.824,0.714 l -0.09,3.331 c 1.157,-0.439 2.134,-0.735 2.93,-0.893 0.799,-0.158 1.527,-0.217 2.183,-0.176 0.788,0.051 1.39,0.24 1.801,0.563 0.412,0.329 0.61,0.79 0.595,1.382 -0.01,0.332 -0.11,0.623 -0.301,0.868 -0.194,0.246 -0.474,0.478 -0.838,0.695 -0.367,0.215 -1.109,0.551 -2.23,1.004 -1.047,0.424 -1.836,0.84 -2.365,1.254 -0.53,0.415 -0.959,0.909 -1.282,1.483 -0.325,0.571 -0.5,1.257 -0.522,2.052 -0.041,1.493 0.437,2.701 1.427,3.62 0.993,0.919 2.386,1.435 4.177,1.55 0.881,0.055 1.722,0.005 2.528,-0.153 0.807,-0.158 1.649,-0.4 2.535,-0.721 L -1.472,8.396 C -2.385,8.712 -3.139,8.922 -3.734,9.031 -4.329,9.14 -4.911,9.178 -5.484,9.14 -6.165,9.098 -6.682,8.908 -7.036,8.567 -7.392,8.229 -7.561,7.807 -7.546,7.296 -7.538,6.979 -7.457,6.71 -7.304,6.482 -7.151,6.258 -6.91,6.046 -6.582,5.848 -6.26,5.646 -5.486,5.299 -4.275,4.805 -2.671,4.15 -1.564,3.461 -0.955,2.74 -0.349,2.014 -0.029,1.102 0,0" /></g><g
89
+ transform="translate(651.4902,561.0049)"
90
+ id="g24"
91
+ style="fill:#0000ff"><path
92
+ id="path26"
93
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
94
+ d="M 0,0 -1.228,4.031 H -7.402 L -8.631,0 H -12.5 l 5.978,17.006 h 4.39 L 3.868,0 Z m -2.086,7.044 c -1.136,3.651 -1.773,5.718 -1.918,6.196 -0.142,0.479 -0.243,0.856 -0.306,1.135 -0.253,-0.988 -0.985,-3.434 -2.188,-7.331 z" /></g><g
95
+ transform="translate(661.2959,561.0049)"
96
+ id="g28"
97
+ style="fill:#0000ff"><path
98
+ id="path30"
99
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
100
+ d="M 0,0 H -3.592 V 13.947 H -8.19 v 2.988 H 4.599 V 13.947 H 0 Z" /></g><g
101
+ transform="translate(668.0908,561.0049)"
102
+ id="g32"
103
+ style="fill:#0000ff"><path
104
+ id="path34"
105
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
106
+ d="M 0,0 V 16.935 H 3.591 V 2.965 h 6.87 V 0 Z" /></g><g
107
+ transform="translate(692.3447,561.0049)"
108
+ id="g36"
109
+ style="fill:#0000ff"><path
110
+ id="path38"
111
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
112
+ d="M 0,0 -1.229,4.031 H -7.402 L -8.63,0 h -3.871 l 5.978,17.006 h 4.392 L 3.869,0 Z m -2.087,7.044 c -1.135,3.651 -1.774,5.718 -1.916,6.196 -0.143,0.479 -0.244,0.856 -0.308,1.135 -0.255,-0.988 -0.982,-3.434 -2.19,-7.331 z" /></g></g></g><text
113
+ id="text40"
114
+ style="font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:27.2037px;font-family:'Helvetica Neue';-inkscape-font-specification:HelveticaNeue-CondensedBlack;writing-mode:lr-tb;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
115
+ transform="matrix(1,0,0,-1,732.7939,561.0693)"><tspan
116
+ id="tspan42"
117
+ y="0"
118
+ x="0 7.0729618 19.641071"
119
+ style="fill:#0000ff">ITk</tspan></text>
120
+ <g
121
+ id="g44"
122
+ style="fill:#0000ff"><g
123
+ clip-path="url(#clipPath48)"
124
+ id="g46"
125
+ style="fill:#0000ff"><g
126
+ transform="translate(718.084,583.0518)"
127
+ id="g52"
128
+ style="fill:#0000ff"><path
129
+ id="path54"
130
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
131
+ d="m 0,0 c -3.012,-0.904 -4.67,-0.726 -4.978,-0.131 l -0.53,-0.273 c 0.283,-0.548 0.993,-0.823 2.056,-0.823 0.986,0 2.274,0.238 3.806,0.71 C 0.234,-0.346 0.116,-0.173 0,0" /></g><g
132
+ transform="translate(722.1104,592.1055)"
133
+ id="g56"
134
+ style="fill:#0000ff"><path
135
+ id="path58"
136
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
137
+ d="m 0,0 c 0.189,0.087 0.378,0.173 0.567,0.255 -2.69,3.151 -5.268,4.549 -6.737,3.651 l 0.311,-0.51 C -4.714,4.099 -2.374,2.736 0,0" /></g><g
138
+ transform="translate(732.1094,592.749)"
139
+ id="g60"
140
+ style="fill:#0000ff"><path
141
+ id="path62"
142
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
143
+ d="M 0,0 -0.529,-0.273 C -0.433,-0.462 -0.44,-0.71 -0.547,-1.004 -1.341,1.525 -2.999,3.447 -5.231,4.415 L -5.47,3.867 c 2.107,-0.913 3.668,-2.749 4.394,-5.172 0.045,-0.148 0.085,-0.296 0.122,-0.445 -0.78,-1.119 -2.464,-2.608 -4.849,-4.112 -0.338,0.661 -0.707,1.325 -1.109,1.983 -0.363,0.59 -0.743,1.164 -1.136,1.714 -0.181,-0.078 -0.368,-0.158 -0.558,-0.242 0.409,-0.57 0.807,-1.169 1.184,-1.784 0.404,-0.662 0.774,-1.328 1.109,-1.986 -0.691,-0.419 -1.432,-0.839 -2.227,-1.248 -1.126,-0.582 -2.252,-1.095 -3.353,-1.528 0.12,-0.17 0.239,-0.336 0.358,-0.498 1.075,0.43 2.174,0.93 3.271,1.498 0.751,0.388 1.495,0.806 2.215,1.241 0.741,-1.543 1.275,-3.046 1.546,-4.384 0.134,-0.67 0.196,-1.269 0.191,-1.792 -2.646,-2.535 -6.255,-3.506 -9.353,-2.165 L -13.9,-15.6 c 1.02,-0.442 2.091,-0.652 3.169,-0.652 2.222,0 4.466,0.894 6.326,2.479 -0.117,-0.516 -0.343,-0.89 -0.672,-1.091 l 0.311,-0.509 c 0.631,0.387 0.982,1.153 1.041,2.227 1.067,1.066 1.973,2.373 2.627,3.884 1.046,2.415 1.313,5.011 0.783,7.396 C 0.125,-1.155 0.268,-0.514 0,0 m -1.646,-9.024 c -0.537,-1.241 -1.252,-2.339 -2.089,-3.267 -0.03,0.408 -0.09,0.846 -0.185,1.314 -0.283,1.402 -0.842,2.973 -1.617,4.581 1.992,1.256 3.733,2.634 4.744,3.869 0.355,-2.114 0.066,-4.377 -0.853,-6.497" /></g><g
144
+ transform="translate(722.542,598.2627)"
145
+ id="g64"
146
+ style="fill:#0000ff"><path
147
+ id="path66"
148
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
149
+ d="m 0,0 c -6.105,0 -11.076,-4.97 -11.076,-11.077 0,-6.108 4.971,-11.076 11.076,-11.076 6.108,0 11.078,4.968 11.078,11.076 C 11.078,-4.97 6.108,0 0,0 M 7.761,-4.559 C 7.109,-4.506 6.305,-4.578 5.352,-4.78 3.329,-5.207 0.799,-6.178 -1.779,-7.51 c -1.35,-0.698 -2.664,-1.477 -3.84,-2.283 -0.469,1.134 -0.812,2.227 -1.006,3.227 -0.065,0.342 -0.113,0.667 -0.141,0.969 2.046,2.969 5.216,4.69 8.287,4.544 2.491,-0.376 4.686,-1.661 6.24,-3.506 m -14.003,1.463 c 1.085,0.85 2.346,1.489 3.718,1.839 -1.595,-0.705 -3.075,-1.853 -4.262,-3.358 0.043,0.698 0.226,1.218 0.544,1.519 m -1.28,-3.752 c 0.219,-1.09 0.602,-2.277 1.122,-3.5 -0.994,-0.73 -1.857,-1.471 -2.514,-2.183 -0.021,1.585 0.297,3.247 0.993,4.857 0.125,0.282 0.257,0.557 0.399,0.826 m -0.195,2.338 c -0.029,-0.421 -0.013,-0.886 0.044,-1.389 -0.293,-0.487 -0.559,-0.999 -0.794,-1.539 -0.829,-1.915 -1.147,-3.903 -1.014,-5.768 -0.12,-0.158 -0.225,-0.315 -0.319,-0.469 -0.22,0.831 -0.339,1.7 -0.339,2.598 0,2.503 0.914,4.797 2.422,6.567 m -1.559,-10.178 c 0.076,-0.36 0.17,-0.711 0.278,-1.054 -0.12,0.233 -0.234,0.47 -0.339,0.714 -10e-4,0.1 0.019,0.213 0.061,0.34 m 13.467,-5.618 c -0.799,-0.208 -2.078,0.341 -3.523,1.553 0.039,-0.269 0.017,-0.546 -0.093,-0.806 -0.038,-0.089 -0.078,-0.172 -0.118,-0.254 0.647,-0.499 1.275,-0.881 1.865,-1.131 C 1.576,-21.12 0.8,-21.217 0,-21.217 c -2.542,0 -4.869,0.945 -6.65,2.497 -1.163,1.292 -1.908,2.989 -2.165,4.855 0.537,0.731 1.476,1.649 2.805,2.644 0.417,-0.883 0.899,-1.777 1.44,-2.659 0.821,-1.344 1.695,-2.54 2.574,-3.561 0.264,0.185 0.581,0.292 0.926,0.292 0.028,0 0.059,-0.003 0.088,-0.006 -0.934,1.03 -1.889,2.292 -2.79,3.764 -0.555,0.908 -1.046,1.827 -1.464,2.728 1.088,0.756 2.384,1.545 3.887,2.321 2.504,1.295 4.953,2.236 6.896,2.646 1.975,0.417 2.939,0.171 3.15,-0.175 0.915,-1.524 1.442,-3.305 1.442,-5.206 0,-4.098 -2.444,-7.632 -5.948,-9.229" /></g><g
150
+ transform="translate(728.1807,577.7393)"
151
+ id="g68"
152
+ style="fill:#0000ff"><path
153
+ id="path70"
154
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
155
+ d="m 0,0 c -0.062,-0.059 -0.242,-0.298 -0.382,-0.308 -0.138,-0.011 -0.795,-0.134 -0.784,-0.376 -0.585,-0.266 -1.673,-0.528 -2.02,-0.675 -0.611,0.252 -1.065,0.4 -1.824,0.44 -0.654,0.37 -1.054,0.489 -1.392,0.542 l -0.215,0.061 0.118,0.385 c 0.478,0.115 0.863,0.588 0.978,1.086 0.17,0.75 -0.201,1.377 -0.725,1.619 -0.739,0.34 -1.586,-0.191 -1.627,-1.121 -0.019,-0.502 0.117,-0.74 0.164,-0.939 0.005,-0.018 0.014,-0.036 0.021,-0.057 -0.046,-0.158 -0.106,-0.324 -0.171,-0.476 -0.434,0.161 -1.1,0.235 -1.398,0.279 -1.192,0.702 -2.421,0.738 -2.993,0.934 -0.397,0.487 -1.383,0.889 -2.227,1.655 -0.051,0.047 0.11,0.483 -0.328,0.785 -0.31,0.301 -0.364,0.454 -0.564,0.895 -0.171,0.172 -0.368,0.307 -0.568,0.236 0.022,-0.151 0.153,-0.342 0.201,-0.767 0.068,-0.601 0.376,-0.991 0.675,-1.466 0.564,-1.087 1.134,-1.759 2.004,-2.429 1.174,-0.845 1.871,-1.122 2.98,-1.506 0.011,-0.687 0.149,-1.51 0.301,-2.212 0.087,-0.404 0.213,-0.697 0.202,-0.981 -0.021,-0.617 -0.062,-0.529 -0.362,-1.152 -0.784,-1.618 -0.575,-4.065 -0.532,-5.213 0.002,-0.052 0.003,-0.102 0.004,-0.15 -0.005,-0.11 -0.055,-0.23 -0.297,-0.255 -0.801,-0.046 -1.845,-0.566 -2.735,-1.625 -0.737,-0.878 -1.428,-1.139 -2.148,-1.054 -0.626,0.077 -0.87,-0.265 -0.612,-0.76 0.273,-0.534 0.191,-0.714 0.127,-1.223 -0.043,-0.342 -0.141,-0.568 0.139,-0.909 0.343,-0.417 1.309,-0.219 1.108,-0.113 -0.597,0.313 -0.109,1.061 0.084,1.477 1.637,1.505 4.381,2.368 4.732,2.556 0.526,0.256 1.193,0.296 1.336,0.908 0.003,0.015 0.55,2.114 0.9,3.384 0.059,0.212 0.217,0.455 0.439,0.345 0.069,-0.033 0.14,-0.082 0.241,-0.164 0.606,-0.506 1.428,-0.934 1.929,-1.244 0.147,-0.09 0.106,-0.302 0.008,-0.392 -0.795,-0.725 -0.981,-1.805 -0.933,-2.448 0.052,-0.708 -0.174,-2.385 -0.515,-3.086 -0.364,-0.75 -0.277,-1.088 0.532,-0.98 0.901,0.118 1.113,-0.172 1.642,-0.256 0.526,-0.085 1.124,0.41 0.867,0.51 -0.235,0.093 -1.339,0.222 -1.776,0.925 0.112,1.305 2.339,5.425 2.442,6.043 -0.223,1.41 -2.596,2.996 -2.937,3.298 -0.043,0.214 -0.086,0.682 -0.067,1.174 0.101,0.471 0.646,1.87 0.642,2.213 0.691,-0.078 1.961,-0.184 2.47,0.086 0.776,0.191 1.768,0.986 2.019,1.298 0.204,0.186 0.572,0.198 0.736,0.347 0.216,0.192 0.312,0.32 0.572,0.858 C 0.666,0.381 0.207,0.198 0,0" /></g></g></g><g
156
+ transform="translate(766.127,583.2275)"
157
+ id="g72"
158
+ style="fill:#0000ff"><path
159
+ id="path74"
160
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
161
+ d="m 0,0 h -33.79 l 0.445,4.833 -1.219,4.938 L 0,9.736 Z" /></g><g
162
+ transform="translate(736.9297,593.0557)"
163
+ id="g76"
164
+ style="fill:#0000ff"><path
165
+ id="path78"
166
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
167
+ d="M 0,0 V -9.874" /></g><g
168
+ transform="translate(741.7813,593.0239)"
169
+ id="g80"
170
+ style="fill:#0000ff"><path
171
+ id="path82"
172
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
173
+ d="M 0,0 V -9.874" /></g><g
174
+ transform="translate(746.6367,593.0557)"
175
+ id="g84"
176
+ style="fill:#0000ff"><path
177
+ id="path86"
178
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
179
+ d="M 0,0 V -9.874" /></g><g
180
+ transform="translate(751.4893,593.0239)"
181
+ id="g88"
182
+ style="fill:#0000ff"><path
183
+ id="path90"
184
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
185
+ d="M 0,0 V -9.874" /></g><g
186
+ transform="translate(756.3418,593.0557)"
187
+ id="g92"
188
+ style="fill:#0000ff"><path
189
+ id="path94"
190
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
191
+ d="M 0,0 V -9.874" /></g><g
192
+ transform="translate(761.1953,593.0239)"
193
+ id="g96"
194
+ style="fill:#0000ff"><path
195
+ id="path98"
196
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
197
+ d="M 0,0 V -9.874" /></g><g
198
+ transform="translate(732.5293,588.0229)"
199
+ id="g100"
200
+ style="fill:#0000ff"><path
201
+ id="path102"
202
+ style="fill:#0000ff;stroke:#ffffff;stroke-width:0.356;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
203
+ d="M 0,0 33.539,0.008" /></g><g
204
+ id="g104"
205
+ style="fill:#0000ff"><g
206
+ clip-path="url(#clipPath108)"
207
+ id="g106"
208
+ style="fill:#0000ff"><g
209
+ transform="translate(733.2402,590.4917)"
210
+ id="g112"
211
+ style="fill:#0000ff"><path
212
+ id="path114"
213
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
214
+ d="M 0,0 C 0,0.69 0.559,1.251 1.247,1.251 1.938,1.251 2.504,0.69 2.504,0 2.504,-0.691 1.938,-1.25 1.247,-1.25 0.559,-1.25 0,-0.691 0,0" /></g><g
215
+ transform="translate(733.209,585.6035)"
216
+ id="g116"
217
+ style="fill:#0000ff"><path
218
+ id="path118"
219
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
220
+ d="M 0,0 C 0,0.69 0.557,1.248 1.246,1.248 1.938,1.248 2.502,0.69 2.502,0 2.502,-0.692 1.938,-1.251 1.246,-1.251 0.557,-1.251 0,-0.692 0,0" /></g><g
221
+ transform="translate(738.0332,590.4917)"
222
+ id="g120"
223
+ style="fill:#0000ff"><path
224
+ id="path122"
225
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
226
+ d="M 0,0 C 0,0.69 0.558,1.251 1.248,1.251 1.939,1.251 2.5,0.69 2.5,0 2.5,-0.691 1.939,-1.25 1.248,-1.25 0.558,-1.25 0,-0.691 0,0" /></g><g
227
+ transform="translate(738.001,585.6035)"
228
+ id="g124"
229
+ style="fill:#0000ff"><path
230
+ id="path126"
231
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
232
+ d="M 0,0 C 0,0.69 0.558,1.248 1.247,1.248 1.938,1.248 2.504,0.69 2.504,0 2.504,-0.692 1.938,-1.251 1.247,-1.251 0.558,-1.251 0,-0.692 0,0" /></g><g
233
+ transform="translate(742.9492,590.4917)"
234
+ id="g128"
235
+ style="fill:#0000ff"><path
236
+ id="path130"
237
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
238
+ d="M 0,0 C 0,0.69 0.557,1.251 1.246,1.251 1.938,1.251 2.5,0.69 2.5,0 2.5,-0.691 1.938,-1.25 1.246,-1.25 0.557,-1.25 0,-0.691 0,0" /></g><g
239
+ transform="translate(742.916,585.6035)"
240
+ id="g132"
241
+ style="fill:#0000ff"><path
242
+ id="path134-9"
243
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
244
+ d="M 0,0 C 0,0.69 0.557,1.248 1.246,1.248 1.938,1.248 2.5,0.69 2.5,0 2.5,-0.692 1.938,-1.251 1.246,-1.251 0.557,-1.251 0,-0.692 0,0" /></g><g
245
+ transform="translate(747.7393,590.4917)"
246
+ id="g136"
247
+ style="fill:#0000ff"><path
248
+ id="path138-3"
249
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
250
+ d="M 0,0 C 0,0.69 0.557,1.251 1.247,1.251 1.938,1.251 2.502,0.69 2.502,0 2.502,-0.691 1.938,-1.25 1.247,-1.25 0.557,-1.25 0,-0.691 0,0" /></g><g
251
+ transform="translate(747.7061,585.6035)"
252
+ id="g140"
253
+ style="fill:#0000ff"><path
254
+ id="path142"
255
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
256
+ d="M 0,0 C 0,0.69 0.56,1.248 1.247,1.248 1.938,1.248 2.503,0.69 2.503,0 2.503,-0.692 1.938,-1.251 1.247,-1.251 0.56,-1.251 0,-0.692 0,0" /></g><g
257
+ transform="translate(752.6543,590.4917)"
258
+ id="g144-8"
259
+ style="fill:#0000ff"><path
260
+ id="path146"
261
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
262
+ d="M 0,0 C 0,0.69 0.557,1.251 1.245,1.251 1.938,1.251 2.502,0.69 2.502,0 2.502,-0.691 1.938,-1.25 1.245,-1.25 0.557,-1.25 0,-0.691 0,0" /></g><g
263
+ transform="translate(752.6211,585.6035)"
264
+ id="g148-0"
265
+ style="fill:#0000ff"><path
266
+ id="path150"
267
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
268
+ d="M 0,0 C 0,0.69 0.559,1.248 1.246,1.248 1.939,1.248 2.502,0.69 2.502,0 2.502,-0.692 1.939,-1.251 1.246,-1.251 0.559,-1.251 0,-0.692 0,0" /></g><g
269
+ transform="translate(757.4453,590.4917)"
270
+ id="g152-2"
271
+ style="fill:#0000ff"><path
272
+ id="path154"
273
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
274
+ d="M 0,0 C 0,0.69 0.559,1.251 1.246,1.251 1.941,1.251 2.501,0.69 2.501,0 2.501,-0.691 1.941,-1.25 1.246,-1.25 0.559,-1.25 0,-0.691 0,0" /></g><g
275
+ transform="translate(757.416,585.6035)"
276
+ id="g156-4"
277
+ style="fill:#0000ff"><path
278
+ id="path158"
279
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
280
+ d="M 0,0 C 0,0.69 0.557,1.248 1.244,1.248 1.937,1.248 2.499,0.69 2.499,0 2.499,-0.692 1.937,-1.251 1.244,-1.251 0.557,-1.251 0,-0.692 0,0" /></g><g
281
+ transform="translate(762.3604,590.4917)"
282
+ id="g160-8"
283
+ style="fill:#0000ff"><path
284
+ id="path162"
285
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
286
+ d="M 0,0 C 0,0.69 0.559,1.251 1.247,1.251 1.94,1.251 2.501,0.69 2.501,0 2.501,-0.691 1.94,-1.25 1.247,-1.25 0.559,-1.25 0,-0.691 0,0" /></g><g
287
+ transform="translate(762.3281,585.6035)"
288
+ id="g164-3"
289
+ style="fill:#0000ff"><path
290
+ id="path166"
291
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
292
+ d="M 0,0 C 0,0.69 0.557,1.248 1.246,1.248 1.94,1.248 2.502,0.69 2.502,0 2.502,-0.692 1.94,-1.251 1.246,-1.251 0.557,-1.251 0,-0.692 0,0" /></g></g></g><g
293
+ transform="translate(712.4434,584.5801)"
294
+ id="g168-9"
295
+ style="fill:#0000ff;stroke:#0000ff;stroke-opacity:1"><path
296
+ id="path170"
297
+ style="fill:#0000ff;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
298
+ d="M 0,0 H -73.436" /></g><g
299
+ transform="translate(712.9521,591.5352)"
300
+ id="g172-0"
301
+ style="fill:#0000ff;stroke:#0000ff;stroke-opacity:1"><path
302
+ id="path174"
303
+ style="fill:#0000ff;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
304
+ d="M 0,0 H -73.944" /></g><g
305
+ transform="translate(712.4434,587.9111)"
306
+ id="g176"
307
+ style="fill:#0000ff;stroke:#0000ff;stroke-opacity:1"><path
308
+ id="path178"
309
+ style="fill:#0000ff;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
310
+ d="M 0,0 -73.413,0.086" /></g><path
311
+ id="path180"
312
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
313
+ d="m 693.077,586.045 h 9.885 v -2.93 h -9.885 z" /><path
314
+ id="path182"
315
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
316
+ d="m 677.006,589.525 h 9.883 v -2.93 h -9.883 z" /><path
317
+ id="path184"
318
+ style="fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
319
+ d="m 692.855,593.229 h 9.883 v -2.93 h -9.883 z" /></g></g></g>
320
+ <g
321
+ id="g144"
322
+ transform="translate(13.757998,-2.4735459)">
323
+ </g>
324
+ <g
325
+ id="g146"
326
+ transform="translate(13.757998,-2.4735459)">
327
+ </g>
328
+ <g
329
+ id="g148"
330
+ transform="translate(13.757998,-2.4735459)">
331
+ </g>
332
+ <g
333
+ id="g150"
334
+ transform="translate(13.757998,-2.4735459)">
335
+ </g>
336
+ <g
337
+ id="g152"
338
+ transform="translate(13.757998,-2.4735459)">
339
+ </g>
340
+ <g
341
+ id="g154"
342
+ transform="translate(13.757998,-2.4735459)">
343
+ </g>
344
+ <g
345
+ id="g156"
346
+ transform="translate(13.757998,-2.4735459)">
347
+ </g>
348
+ <g
349
+ id="g158"
350
+ transform="translate(13.757998,-2.4735459)">
351
+ </g>
352
+ <g
353
+ id="g160"
354
+ transform="translate(13.757998,-2.4735459)">
355
+ </g>
356
+ <g
357
+ id="g162"
358
+ transform="translate(13.757998,-2.4735459)">
359
+ </g>
360
+ <g
361
+ id="g164"
362
+ transform="translate(13.757998,-2.4735459)">
363
+ </g>
364
+ <g
365
+ id="g166"
366
+ transform="translate(13.757998,-2.4735459)">
367
+ </g>
368
+ <g
369
+ id="g168"
370
+ transform="translate(13.757998,-2.4735459)">
371
+ </g>
372
+ <g
373
+ id="g170"
374
+ transform="translate(13.757998,-2.4735459)">
375
+ </g>
376
+ <g
377
+ id="g172"
378
+ transform="translate(13.757998,-2.4735459)">
379
+ </g>
380
+ </svg>