tomwer 1.0.4__py3-none-any.whl → 1.1.0__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.
- orangecontrib/tomwer/tutorials/EBS_tomo_listener.ows +39 -0
- orangecontrib/tomwer/tutorials/cast_volume.ows +34 -0
- orangecontrib/tomwer/tutorials/simple_slice_reconstruction.ows +39 -0
- orangecontrib/tomwer/tutorials/simple_volume_local_reconstruction.ows +49 -0
- orangecontrib/tomwer/tutorials/simple_volume_to_slurm_reconstruction.ows +59 -0
- orangecontrib/tomwer/tutorials/using_saaxis_to_find_cor.ows +44 -0
- orangecontrib/tomwer/widgets/cluster/FutureSupervisorOW.py +1 -1
- orangecontrib/tomwer/widgets/cluster/SlurmClusterOW.py +14 -4
- orangecontrib/tomwer/widgets/cluster/__init__.py +1 -1
- orangecontrib/tomwer/widgets/control/DataListOW.py +12 -5
- orangecontrib/tomwer/widgets/control/DataListenerOW.py +18 -9
- orangecontrib/tomwer/widgets/control/DataSelectorOW.py +13 -6
- orangecontrib/tomwer/widgets/control/DataTransfertOW.py +4 -5
- orangecontrib/tomwer/widgets/control/DataValidatorOW.py +8 -4
- orangecontrib/tomwer/widgets/control/DataWatcherOW.py +4 -6
- orangecontrib/tomwer/widgets/control/EDF2NXTomomillOW.py +49 -62
- orangecontrib/tomwer/widgets/control/FilterOW.py +2 -4
- orangecontrib/tomwer/widgets/control/NXTomomillMixIn.py +93 -0
- orangecontrib/tomwer/widgets/control/NXTomomillOW.py +135 -128
- orangecontrib/tomwer/widgets/control/NotifierOW.py +31 -7
- orangecontrib/tomwer/widgets/control/SingleTomoObjOW.py +3 -5
- orangecontrib/tomwer/widgets/control/TomoObjSerieOW.py +85 -0
- orangecontrib/tomwer/widgets/control/VolumeSelector.py +12 -4
- orangecontrib/tomwer/widgets/control/VolumeSymLinkOW.py +11 -7
- orangecontrib/tomwer/widgets/control/icons/notification.svg +4 -4
- orangecontrib/tomwer/widgets/control/icons/nxtomomill.png +0 -0
- orangecontrib/tomwer/widgets/control/icons/nxtomomill.svg +8 -5
- orangecontrib/tomwer/widgets/control/icons/tomoobjserie.png +0 -0
- orangecontrib/tomwer/widgets/control/icons/tomoobjserie.svg +138 -0
- orangecontrib/tomwer/widgets/edit/DarkFlatPatchOW.py +16 -4
- orangecontrib/tomwer/widgets/edit/NXtomoEditorOW.py +100 -0
- orangecontrib/tomwer/widgets/edit/icons/image_key_editor.png +0 -0
- orangecontrib/tomwer/widgets/edit/icons/image_key_upgrader.png +0 -0
- orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.png +0 -0
- orangecontrib/tomwer/widgets/edit/icons/nx_tomo_editor.svg +123 -0
- orangecontrib/tomwer/widgets/edit/test/test_dark_flat_patch.py +21 -1
- orangecontrib/tomwer/widgets/edit/test/test_image_key_editor.py +1 -1
- orangecontrib/tomwer/widgets/edit/test/test_image_key_upgrader.py +1 -1
- orangecontrib/tomwer/widgets/edit/test/test_nxtomo_editor.py +25 -0
- orangecontrib/tomwer/widgets/other/PythonScriptOW.py +19 -10
- orangecontrib/tomwer/widgets/reconstruction/AxisOW.py +20 -14
- orangecontrib/tomwer/widgets/reconstruction/CastNabuVolumeOW.py +24 -10
- orangecontrib/tomwer/widgets/reconstruction/DarkRefAndCopyOW.py +26 -21
- orangecontrib/tomwer/widgets/reconstruction/NabuOW.py +29 -12
- orangecontrib/tomwer/widgets/reconstruction/NabuVolumeOW.py +44 -17
- orangecontrib/tomwer/widgets/reconstruction/SAAxisOW.py +28 -18
- orangecontrib/tomwer/widgets/reconstruction/SADeltaBetaOW.py +24 -17
- orangecontrib/tomwer/widgets/reconstruction/SinoNormOW.py +6 -6
- orangecontrib/tomwer/widgets/reconstruction/TofuOW.py +4 -2
- orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.png +0 -0
- orangecontrib/tomwer/widgets/reconstruction/icons/nabu_2d.svg +11 -8
- orangecontrib/tomwer/widgets/visualization/DataViewerOW.py +10 -4
- orangecontrib/tomwer/widgets/visualization/DiffViewerOW.py +1 -1
- orangecontrib/tomwer/widgets/visualization/NXtomoMetadataViewerOW.py +69 -0
- orangecontrib/tomwer/widgets/visualization/SampleMovedOW.py +2 -4
- orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.png +0 -0
- orangecontrib/tomwer/widgets/visualization/icons/nx_tomo_metadata_viewer.svg +105 -0
- tomwer/__main__.py +10 -5
- tomwer/app/canvas_launcher/config.py +10 -10
- tomwer/app/canvas_launcher/mainwindow.py +68 -6
- tomwer/app/canvas_launcher/widgetsscheme.py +1 -3
- tomwer/app/darkref.py +16 -12
- tomwer/app/imagekeyeditor.py +2 -2
- tomwer/app/imagekeyupgrader.py +104 -0
- tomwer/app/nxtomoeditor.py +103 -0
- tomwer/app/rsync.py +1 -1
- tomwer/core/cluster/cluster.py +1 -1
- tomwer/core/futureobject.py +1 -0
- tomwer/core/process/control/datalistener/datalistener.py +7 -1
- tomwer/core/process/control/datalistener/rpcserver.py +3 -3
- tomwer/core/process/control/datawatcher/datawatcher.py +18 -18
- tomwer/core/process/control/datawatcher/datawatcherobserver.py +5 -8
- tomwer/core/process/control/datawatcher/datawatcherprocess.py +2 -3
- tomwer/core/process/control/datawatcher/edfdwprocess.py +2 -2
- tomwer/core/process/control/nxtomomill.py +33 -58
- tomwer/core/process/control/scanlist.py +2 -1
- tomwer/core/process/control/scanselector.py +7 -0
- tomwer/core/process/control/scantransfer.py +9 -18
- tomwer/core/process/control/scanvalidator.py +6 -5
- tomwer/core/process/control/singletomoobj.py +2 -1
- tomwer/core/process/control/timer.py +2 -1
- tomwer/core/process/control/tomoobjserie.py +8 -0
- tomwer/core/process/control/volumeselector.py +2 -1
- tomwer/core/process/control/volumesymlink.py +2 -1
- tomwer/core/process/edit/darkflatpatch.py +2 -1
- tomwer/core/process/edit/imagekeyeditor.py +4 -3
- tomwer/core/process/reconstruction/axis/axis.py +29 -32
- tomwer/core/process/reconstruction/axis/mode.py +3 -2
- tomwer/core/process/reconstruction/axis/params.py +35 -16
- tomwer/core/process/reconstruction/darkref/darkrefs.py +90 -707
- tomwer/core/process/reconstruction/darkref/darkrefscopy.py +44 -16
- tomwer/core/process/reconstruction/darkref/params.py +62 -67
- tomwer/core/process/reconstruction/lamino/tofu.py +1 -1
- tomwer/core/process/reconstruction/nabu/castvolume.py +21 -26
- tomwer/core/process/reconstruction/nabu/nabucommon.py +36 -38
- tomwer/core/process/reconstruction/nabu/nabuscores.py +28 -13
- tomwer/core/process/reconstruction/nabu/nabuslices.py +41 -14
- tomwer/core/process/reconstruction/nabu/nabuvolume.py +21 -12
- tomwer/core/process/reconstruction/nabu/utils.py +12 -1
- tomwer/core/process/reconstruction/normalization/normalization.py +9 -8
- tomwer/core/process/reconstruction/saaxis/saaxis.py +46 -20
- tomwer/core/process/reconstruction/sadeltabeta/sadeltabeta.py +38 -12
- tomwer/core/process/reconstruction/test/__init__.py +0 -39
- tomwer/core/process/reconstruction/test/test_axis_params.py +25 -3
- tomwer/core/process/reconstruction/test/test_darkref_copy.py +117 -1
- tomwer/core/process/script/python.py +16 -12
- tomwer/core/process/task.py +3 -7
- tomwer/core/process/test/test_axis.py +1 -1
- tomwer/core/process/test/test_dark_and_flat.py +41 -111
- tomwer/core/process/test/test_data_listener.py +0 -29
- tomwer/core/process/test/test_data_transfer.py +10 -14
- tomwer/core/process/test/test_nabu.py +1 -1
- tomwer/core/process/test/test_normalization.py +1 -1
- tomwer/core/process/visualization/liveslice.py +6 -0
- tomwer/core/scan/blissscan.py +37 -2
- tomwer/core/scan/edfscan.py +14 -4
- tomwer/core/scan/hdf5scan.py +10 -4
- tomwer/core/scan/scanbase.py +35 -29
- tomwer/core/scan/scanfactory.py +3 -17
- tomwer/core/scan/test/test_h5.py +1 -1
- tomwer/core/scan/test/test_process_registration.py +0 -11
- tomwer/core/scan/test/test_scan.py +32 -30
- tomwer/core/settings.py +2 -2
- tomwer/core/test/test_utils.py +1 -1
- tomwer/core/tomwer_object.py +19 -0
- tomwer/core/utils/__init__.py +0 -45
- tomwer/core/utils/char.py +2 -0
- tomwer/core/utils/gpu.py +5 -5
- tomwer/core/utils/nxtomoutils.py +2 -2
- tomwer/core/utils/scanutils.py +50 -0
- tomwer/core/utils/volumeutils.py +13 -0
- tomwer/core/volume/edfvolume.py +4 -0
- tomwer/core/volume/hdf5volume.py +4 -0
- tomwer/core/volume/jp2kvolume.py +4 -0
- tomwer/core/volume/rawvolume.py +4 -0
- tomwer/core/volume/tiffvolume.py +4 -0
- tomwer/core/volume/volumebase.py +19 -12
- tomwer/core/volume/volumefactory.py +20 -1
- tomwer/gui/cluster/slurm.py +1 -1
- tomwer/gui/cluster/test/test_cluster.py +2 -2
- tomwer/gui/control/datalist.py +109 -34
- tomwer/gui/control/datatransfert.py +1 -1
- tomwer/gui/control/datawatcher/datawatcher.py +23 -13
- tomwer/gui/control/datawatcher/datawatcherobserver.py +1 -1
- tomwer/gui/control/observations.py +0 -3
- tomwer/gui/control/selectorwidgetbase.py +42 -11
- tomwer/gui/control/serie/seriecreator.py +967 -0
- tomwer/{web/__init__.py → gui/control/serie/seriewaiter.py} +5 -7
- tomwer/gui/control/singletomoobj.py +15 -3
- tomwer/gui/control/test/test_datalist.py +1 -1
- tomwer/gui/control/test/test_datalistener.py +1 -1
- tomwer/gui/control/test/test_inputwidget.py +1 -1
- tomwer/gui/control/test/test_process_manager.py +1 -13
- tomwer/gui/control/test/test_scanselector.py +1 -1
- tomwer/gui/control/test/test_scanvalidator.py +1 -1
- tomwer/gui/control/test/test_single_tomo_obj.py +1 -1
- tomwer/gui/control/test/test_volume_dialog.py +19 -7
- tomwer/gui/control/test/test_volumeselector.py +4 -4
- tomwer/gui/debugtools/datasetgenerator.py +1 -8
- tomwer/gui/edit/dkrfpatch.py +2 -2
- tomwer/gui/edit/imagekeyeditor.py +12 -9
- tomwer/gui/edit/nxtomoeditor.py +475 -0
- tomwer/gui/edit/test/test_dkrf_patch.py +2 -14
- tomwer/gui/edit/test/test_image_key_editor.py +2 -2
- tomwer/gui/edit/test/test_nx_editor.py +155 -0
- tomwer/gui/qfolderdialog.py +11 -0
- tomwer/gui/reconstruction/axis/CompareImages.py +27 -29
- tomwer/gui/reconstruction/axis/axis.py +2 -0
- tomwer/gui/reconstruction/axis/radioaxis.py +67 -11
- tomwer/gui/reconstruction/darkref/darkrefcopywidget.py +7 -9
- tomwer/gui/reconstruction/darkref/darkrefwidget.py +22 -24
- tomwer/gui/reconstruction/lamino/tofu/projections.py +1 -1
- tomwer/gui/reconstruction/lamino/tofu/tofu.py +3 -3
- tomwer/gui/reconstruction/lamino/tofu/tofuexpert.py +4 -4
- tomwer/gui/reconstruction/lamino/tofu/tofuoutput.py +10 -4
- tomwer/gui/reconstruction/nabu/castvolume.py +80 -11
- tomwer/gui/reconstruction/nabu/check.py +1 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/ctf.py +352 -0
- tomwer/gui/reconstruction/nabu/nabuconfig/nabuconfig.py +0 -9
- tomwer/gui/reconstruction/nabu/nabuconfig/output.py +1 -1
- tomwer/gui/reconstruction/nabu/nabuconfig/phase.py +18 -19
- tomwer/gui/reconstruction/nabu/nabuconfig/preprocessing.py +30 -7
- tomwer/gui/reconstruction/nabu/nabuconfig/reconstruction.py +26 -13
- tomwer/gui/reconstruction/nabu/slices.py +10 -2
- tomwer/gui/reconstruction/nabu/slurm.py +1 -1
- tomwer/gui/reconstruction/nabu/volume.py +13 -7
- tomwer/gui/reconstruction/normalization/intensity.py +1 -1
- tomwer/gui/reconstruction/saaxis/corrangeselector.py +10 -34
- tomwer/gui/reconstruction/saaxis/saaxis.py +11 -6
- tomwer/gui/reconstruction/saaxis/sliceselector.py +11 -26
- tomwer/gui/reconstruction/sadeltabeta/saadeltabeta.py +13 -8
- tomwer/gui/reconstruction/scores/scoreplot.py +67 -61
- tomwer/gui/reconstruction/test/test_axis.py +2 -2
- tomwer/gui/reconstruction/test/test_lamino.py +2 -2
- tomwer/gui/reconstruction/test/test_nabu.py +14 -1
- tomwer/gui/reconstruction/test/test_saaxis.py +8 -17
- tomwer/gui/reconstruction/test/test_sadeltabeta.py +7 -13
- tomwer/gui/stackplot.py +11 -28
- tomwer/gui/test/test_axis_gui.py +4 -4
- tomwer/gui/test/test_qfolder_dialog.py +12 -0
- tomwer/gui/utils/inputwidget.py +42 -21
- tomwer/gui/utils/lineselector/lineselector.py +13 -21
- tomwer/gui/utils/scandescription.py +2 -4
- tomwer/gui/utils/slider.py +1 -102
- tomwer/gui/utils/unitsystem.py +48 -11
- tomwer/gui/visualization/dataviewer.py +24 -17
- tomwer/gui/visualization/diffviewer/diffviewer.py +2 -11
- tomwer/gui/visualization/nxtomometadata.py +21 -0
- tomwer/gui/visualization/scanoverview.py +0 -1
- tomwer/gui/visualization/test/test_nx_tomo_metadata_viewer.py +72 -0
- tomwer/gui/visualization/test/test_stacks.py +1 -1
- tomwer/gui/visualization/tomoobjoverview.py +49 -0
- tomwer/gui/visualization/volumeoverview.py +64 -0
- tomwer/gui/visualization/volumeviewer.py +1 -1
- tomwer/resources/gui/icons/multi-document-save.png +0 -0
- tomwer/resources/gui/icons/multi-document-save.svg +101 -0
- tomwer/resources/gui/illustrations/ctf_z1.png +0 -0
- tomwer/resources/gui/illustrations/ctf_z1.svg +471 -0
- tomwer/synctools/datalistener.py +5 -1
- tomwer/synctools/imageloaderthread.py +2 -2
- tomwer/synctools/stacks/edit/imagekeyeditor.py +1 -1
- tomwer/synctools/stacks/processingstack.py +2 -2
- tomwer/synctools/stacks/reconstruction/castvolume.py +1 -0
- tomwer/synctools/stacks/reconstruction/lamino.py +1 -3
- tomwer/synctools/stacks/reconstruction/sadeltabeta.py +0 -2
- tomwer/synctools/test/test_darkRefs.py +32 -149
- tomwer/synctools/test/test_foldertransfer.py +1 -1
- tomwer/synctools/test/test_scanstages.py +2 -2
- tomwer/tests/__init__.py +0 -0
- tomwer/tests/conftest.py +51 -0
- tomwer/{test → tests}/test_scripts.py +1 -1
- tomwer/tests/test_utils.py +10 -0
- tomwer/{test → tests}/utils/utilstest.py +0 -11
- tomwer/version.py +3 -3
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/METADATA +14 -16
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/RECORD +245 -217
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/WHEEL +1 -1
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/entry_points.txt +6 -0
- orangecontrib/tomwer/setup.py +0 -45
- orangecontrib/tomwer/widgets/setup.py +0 -49
- tomwer/app/process.py +0 -153
- tomwer/core/process/reconstruction/nabu/slurm.py +0 -36
- tomwer/core/process/reconstruction/utils/nabu_slice_exec.py +0 -10
- tomwer/core/utils/laminoutils.py +0 -80
- tomwer/gui/utils/lineselector/lineselection.py +0 -76
- tomwer/setup.py +0 -52
- tomwer/web/client.py +0 -43
- tomwer/web/config.py +0 -36
- tomwer/web/test/test_graylog_connection.py +0 -59
- {tomwer/test → orangecontrib/tomwer/tutorials}/__init__.py +0 -0
- /tomwer/{web/test → gui/control/serie}/__init__.py +0 -0
- /tomwer/{test → tests}/utils/__init__.py +0 -0
- /tomwer-1.0.4-py3.8-nspkg.pth → /tomwer-1.1.0-py3.9-nspkg.pth +0 -0
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/LICENSE +0 -0
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/namespace_packages.txt +0 -0
- {tomwer-1.0.4.dist-info → tomwer-1.1.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,64 @@
|
|
1
|
+
from silx.gui import qt
|
2
|
+
from tomwer.core.volume.volumebase import TomwerVolumeBase
|
3
|
+
from tomoscan.identifier import VolumeIdentifier
|
4
|
+
from typing import Optional
|
5
|
+
import logging
|
6
|
+
|
7
|
+
_logger = logging.getLogger(__name__)
|
8
|
+
|
9
|
+
|
10
|
+
class VolumeOverviewWidget(qt.QWidget):
|
11
|
+
def __init__(self, parent=None):
|
12
|
+
super().__init__(parent)
|
13
|
+
self._volumeIdentifier = None
|
14
|
+
self.setLayout(qt.QVBoxLayout())
|
15
|
+
self._tree = qt.QTreeWidget(self)
|
16
|
+
self._tree.setColumnCount(2)
|
17
|
+
self._tree.setHeaderLabels(("metadata", "value"))
|
18
|
+
self.layout().addWidget(self._tree)
|
19
|
+
|
20
|
+
# 1: define translations
|
21
|
+
self._x_position = qt.QTreeWidgetItem(self._tree)
|
22
|
+
self._x_position.setText(0, "x position")
|
23
|
+
self._y_position = qt.QTreeWidgetItem(self._tree)
|
24
|
+
self._y_position.setText(0, "y position")
|
25
|
+
self._z_position = qt.QTreeWidgetItem(self._tree)
|
26
|
+
self._z_position.setText(0, "z position")
|
27
|
+
|
28
|
+
# 2. define pixel size
|
29
|
+
self._x_pixel_size = qt.QTreeWidgetItem(self._tree)
|
30
|
+
self._x_pixel_size.setText(0, "x pixel size")
|
31
|
+
self._y_pixel_size = qt.QTreeWidgetItem(self._tree)
|
32
|
+
self._y_pixel_size.setText(0, "y pixel size")
|
33
|
+
|
34
|
+
def setVolume(self, volume: Optional[TomwerVolumeBase]):
|
35
|
+
if volume is None:
|
36
|
+
self._x_position.setText(1, "")
|
37
|
+
self._y_position.setText(1, "")
|
38
|
+
self._z_position.setText(1, "")
|
39
|
+
self._x_pixel_size.setText(1, "")
|
40
|
+
self._y_pixel_size.setText(1, "")
|
41
|
+
elif not isinstance(volume, TomwerVolumeBase):
|
42
|
+
raise TypeError(
|
43
|
+
f"volume is expected to be a {TomwerVolumeBase} or a {VolumeIdentifier}. Not ({type(volume)}) "
|
44
|
+
)
|
45
|
+
else:
|
46
|
+
try:
|
47
|
+
x_pos, y_pos, z_pos = volume.position()
|
48
|
+
except Exception:
|
49
|
+
self._x_position.setText(1, "?")
|
50
|
+
self._y_position.setText(1, "?")
|
51
|
+
self._z_position.setText(1, "?")
|
52
|
+
else:
|
53
|
+
self._x_position.setText(1, x_pos)
|
54
|
+
self._y_position.setText(1, y_pos)
|
55
|
+
self._z_position.setText(1, z_pos)
|
56
|
+
|
57
|
+
try:
|
58
|
+
x_size, y_size = volume.pixel_size
|
59
|
+
except Exception:
|
60
|
+
self._x_pixel_size.setText(1, "?")
|
61
|
+
self._y_pixel_size.setText(1, "?")
|
62
|
+
else:
|
63
|
+
self._x_pixel_size.setText(1, x_size)
|
64
|
+
self._y_pixel_size.setText(1, y_size)
|
@@ -336,7 +336,7 @@ class VolumeViewer(qt.QMainWindow):
|
|
336
336
|
pass
|
337
337
|
else:
|
338
338
|
raise TypeError(
|
339
|
-
"Volume should be an instance of a Volume, a VolumeIdentifier or a string refering to a VolumeIdentifier"
|
339
|
+
f"Volume should be an instance of a Volume, a VolumeIdentifier or a string refering to a VolumeIdentifier. {type(volume)} provided"
|
340
340
|
)
|
341
341
|
|
342
342
|
data = self._get_data_volume(volume)
|
Binary file
|
@@ -0,0 +1,101 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
8
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10
|
+
version="1.1"
|
11
|
+
viewBox="0 0 32 32"
|
12
|
+
xml:space="preserve"
|
13
|
+
id="svg10"
|
14
|
+
sodipodi:docname="multi-document-save.svg"
|
15
|
+
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
|
16
|
+
inkscape:export-filename="/media/payno/830add5c-f5d7-4db2-875e-03be4f0a67f0/dev/tomography/tomwer/tomwer/resources/gui/icons/multi-document-save.png"
|
17
|
+
inkscape:export-xdpi="134.50999"
|
18
|
+
inkscape:export-ydpi="134.50999"><metadata
|
19
|
+
id="metadata16"><rdf:RDF><cc:Work
|
20
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
21
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
22
|
+
id="defs14" /><sodipodi:namedview
|
23
|
+
pagecolor="#ffffff"
|
24
|
+
bordercolor="#666666"
|
25
|
+
borderopacity="1"
|
26
|
+
objecttolerance="10"
|
27
|
+
gridtolerance="10"
|
28
|
+
guidetolerance="10"
|
29
|
+
inkscape:pageopacity="0"
|
30
|
+
inkscape:pageshadow="2"
|
31
|
+
inkscape:window-width="1565"
|
32
|
+
inkscape:window-height="901"
|
33
|
+
id="namedview12"
|
34
|
+
showgrid="false"
|
35
|
+
inkscape:zoom="7.375"
|
36
|
+
inkscape:cx="12.75286"
|
37
|
+
inkscape:cy="22.157776"
|
38
|
+
inkscape:window-x="72"
|
39
|
+
inkscape:window-y="27"
|
40
|
+
inkscape:window-maximized="0"
|
41
|
+
inkscape:current-layer="svg10" /><g
|
42
|
+
id="g875"
|
43
|
+
transform="translate(7.7288136,-10.440678)"><path
|
44
|
+
style="stroke-width:0.73062545"
|
45
|
+
inkscape:connector-curvature="0"
|
46
|
+
id="path2"
|
47
|
+
d="m 22.169864,27.598717 c 0,0.193206 -0.170956,0.351283 -0.379902,0.351283 H 5.8219024 C 5.6129561,27.95 5.442,27.791923 5.442,27.598717 V 12.835685 c 0,-0.193206 0.1709561,-0.351283 0.3799024,-0.351283 H 18.184688 c 0.208946,0 0.498432,0.113816 0.643555,0.252924 l 3.077969,2.951482 c 0.144363,0.139108 0.263652,0.411002 0.263652,0.604207 z" /><path
|
48
|
+
style="fill:#ffffff;stroke-width:0.73062545"
|
49
|
+
inkscape:connector-curvature="0"
|
50
|
+
id="path4"
|
51
|
+
d="m 20.430671,25.582351 c 0,0.115923 -0.102574,0.21077 -0.227941,0.21077 H 7.6629097 c -0.1253678,0 -0.2279415,-0.09485 -0.2279415,-0.21077 v -4.928505 c 0,-0.115923 0.1025737,-0.21077 0.2279415,-0.21077 H 20.20273 c 0.125367,0 0.227941,0.09485 0.227941,0.21077 z" /><path
|
52
|
+
style="fill:#ffffff;stroke-width:0.73062545"
|
53
|
+
inkscape:connector-curvature="0"
|
54
|
+
id="path6"
|
55
|
+
d="m 17.206059,16.267723 c 0,0.115923 -0.102574,0.21077 -0.227941,0.21077 H 7.6629097 c -0.1253678,0 -0.2279415,-0.09485 -0.2279415,-0.21077 v -3.800885 c 0,-0.115924 0.1025737,-0.21077 0.2279415,-0.21077 h 9.3152083 c 0.125367,0 0.227941,0.09485 0.227941,0.21077 z" /><rect
|
56
|
+
style="stroke-width:0.73062545"
|
57
|
+
id="rect8"
|
58
|
+
height="3.0048773"
|
59
|
+
width="1.6229432"
|
60
|
+
y="12.484402"
|
61
|
+
x="13.024853" /></g><g
|
62
|
+
transform="translate(2.194068,-3.5606607)"
|
63
|
+
id="g875-2"><path
|
64
|
+
style="stroke-width:0.73062545"
|
65
|
+
inkscape:connector-curvature="0"
|
66
|
+
id="path2-7"
|
67
|
+
d="m 22.169864,27.598717 c 0,0.193206 -0.170956,0.351283 -0.379902,0.351283 H 5.8219024 C 5.6129561,27.95 5.442,27.791923 5.442,27.598717 V 12.835685 c 0,-0.193206 0.1709561,-0.351283 0.3799024,-0.351283 H 18.184688 c 0.208946,0 0.498432,0.113816 0.643555,0.252924 l 3.077969,2.951482 c 0.144363,0.139108 0.263652,0.411002 0.263652,0.604207 z" /><path
|
68
|
+
style="fill:#ffffff;stroke-width:0.73062545"
|
69
|
+
inkscape:connector-curvature="0"
|
70
|
+
id="path4-0"
|
71
|
+
d="m 20.430671,25.582351 c 0,0.115923 -0.102574,0.21077 -0.227941,0.21077 H 7.6629097 c -0.1253678,0 -0.2279415,-0.09485 -0.2279415,-0.21077 v -4.928505 c 0,-0.115923 0.1025737,-0.21077 0.2279415,-0.21077 H 20.20273 c 0.125367,0 0.227941,0.09485 0.227941,0.21077 z" /><path
|
72
|
+
style="fill:#ffffff;stroke-width:0.73062545"
|
73
|
+
inkscape:connector-curvature="0"
|
74
|
+
id="path6-9"
|
75
|
+
d="m 17.206059,16.267723 c 0,0.115923 -0.102574,0.21077 -0.227941,0.21077 H 7.6629097 c -0.1253678,0 -0.2279415,-0.09485 -0.2279415,-0.21077 v -3.800885 c 0,-0.115924 0.1025737,-0.21077 0.2279415,-0.21077 h 9.3152083 c 0.125367,0 0.227941,0.09485 0.227941,0.21077 z" /><rect
|
76
|
+
style="stroke-width:0.73062545"
|
77
|
+
id="rect8-3"
|
78
|
+
height="3.0048773"
|
79
|
+
width="1.6229432"
|
80
|
+
y="12.484402"
|
81
|
+
x="13.024853" /></g><g
|
82
|
+
transform="translate(-3.9076269,2.6766275)"
|
83
|
+
id="g875-6"><path
|
84
|
+
style="stroke-width:0.73062545"
|
85
|
+
inkscape:connector-curvature="0"
|
86
|
+
id="path2-0"
|
87
|
+
d="m 22.169864,27.598717 c 0,0.193206 -0.170956,0.351283 -0.379902,0.351283 H 5.8219024 C 5.6129561,27.95 5.442,27.791923 5.442,27.598717 V 12.835685 c 0,-0.193206 0.1709561,-0.351283 0.3799024,-0.351283 H 18.184688 c 0.208946,0 0.498432,0.113816 0.643555,0.252924 l 3.077969,2.951482 c 0.144363,0.139108 0.263652,0.411002 0.263652,0.604207 z" /><path
|
88
|
+
style="fill:#ffffff;stroke-width:0.73062545"
|
89
|
+
inkscape:connector-curvature="0"
|
90
|
+
id="path4-6"
|
91
|
+
d="m 20.430671,25.582351 c 0,0.115923 -0.102574,0.21077 -0.227941,0.21077 H 7.6629097 c -0.1253678,0 -0.2279415,-0.09485 -0.2279415,-0.21077 v -4.928505 c 0,-0.115923 0.1025737,-0.21077 0.2279415,-0.21077 H 20.20273 c 0.125367,0 0.227941,0.09485 0.227941,0.21077 z" /><path
|
92
|
+
style="fill:#ffffff;stroke-width:0.73062545"
|
93
|
+
inkscape:connector-curvature="0"
|
94
|
+
id="path6-2"
|
95
|
+
d="m 17.206059,16.267723 c 0,0.115923 -0.102574,0.21077 -0.227941,0.21077 H 7.6629097 c -0.1253678,0 -0.2279415,-0.09485 -0.2279415,-0.21077 v -3.800885 c 0,-0.115924 0.1025737,-0.21077 0.2279415,-0.21077 h 9.3152083 c 0.125367,0 0.227941,0.09485 0.227941,0.21077 z" /><rect
|
96
|
+
style="stroke-width:0.73062545"
|
97
|
+
id="rect8-6"
|
98
|
+
height="3.0048773"
|
99
|
+
width="1.6229432"
|
100
|
+
y="12.484402"
|
101
|
+
x="13.024853" /></g></svg>
|
Binary file
|