datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.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.
- datalab/__init__.py +35 -2
- datalab/adapters_metadata/__init__.py +31 -0
- datalab/adapters_metadata/base_adapter.py +316 -0
- datalab/adapters_metadata/common.py +422 -0
- datalab/adapters_metadata/geometry_adapter.py +98 -0
- datalab/adapters_metadata/table_adapter.py +84 -0
- datalab/adapters_plotpy/__init__.py +54 -0
- datalab/adapters_plotpy/annotations.py +124 -0
- datalab/adapters_plotpy/base.py +110 -0
- datalab/adapters_plotpy/converters.py +86 -0
- datalab/adapters_plotpy/factories.py +80 -0
- datalab/adapters_plotpy/objects/__init__.py +0 -0
- datalab/adapters_plotpy/objects/base.py +197 -0
- datalab/adapters_plotpy/objects/image.py +157 -0
- datalab/adapters_plotpy/objects/scalar.py +565 -0
- datalab/adapters_plotpy/objects/signal.py +264 -0
- datalab/adapters_plotpy/roi/__init__.py +0 -0
- datalab/adapters_plotpy/roi/base.py +146 -0
- datalab/adapters_plotpy/roi/factory.py +93 -0
- datalab/adapters_plotpy/roi/image.py +207 -0
- datalab/adapters_plotpy/roi/signal.py +72 -0
- datalab/app.py +98 -0
- datalab/config.py +817 -0
- datalab/control/__init__.py +0 -0
- datalab/control/baseproxy.py +776 -0
- datalab/control/proxy.py +343 -0
- datalab/control/remote.py +1005 -0
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/data/icons/analysis/delete_results.svg +109 -0
- datalab/data/icons/analysis/fw1e2.svg +156 -0
- datalab/data/icons/analysis/fwhm.svg +156 -0
- datalab/data/icons/analysis/histogram.svg +49 -0
- datalab/data/icons/analysis/peak_detect.svg +160 -0
- datalab/data/icons/analysis/plot_results.svg +151 -0
- datalab/data/icons/analysis/show_results.svg +83 -0
- datalab/data/icons/analysis/stats.svg +49 -0
- datalab/data/icons/analysis.svg +120 -0
- datalab/data/icons/apply.svg +3 -0
- datalab/data/icons/check_all.svg +15 -0
- datalab/data/icons/collapse.svg +44 -0
- datalab/data/icons/collapse_selection.svg +63 -0
- datalab/data/icons/console.svg +101 -0
- datalab/data/icons/create/1d-normal.svg +8 -0
- datalab/data/icons/create/1d-poisson.svg +9 -0
- datalab/data/icons/create/1d-uniform.svg +8 -0
- datalab/data/icons/create/1d-zero.svg +57 -0
- datalab/data/icons/create/2d-gaussian.svg +56 -0
- datalab/data/icons/create/2d-normal.svg +38 -0
- datalab/data/icons/create/2d-poisson.svg +38 -0
- datalab/data/icons/create/2d-ramp.svg +90 -0
- datalab/data/icons/create/2d-sinc.svg +62 -0
- datalab/data/icons/create/2d-uniform.svg +38 -0
- datalab/data/icons/create/2d-zero.svg +13 -0
- datalab/data/icons/create/checkerboard.svg +39 -0
- datalab/data/icons/create/cosine.svg +12 -0
- datalab/data/icons/create/exponential.svg +55 -0
- datalab/data/icons/create/gaussian.svg +12 -0
- datalab/data/icons/create/grating.svg +29 -0
- datalab/data/icons/create/linear_chirp.svg +7 -0
- datalab/data/icons/create/logistic.svg +7 -0
- datalab/data/icons/create/lorentzian.svg +12 -0
- datalab/data/icons/create/planck.svg +12 -0
- datalab/data/icons/create/polynomial.svg +7 -0
- datalab/data/icons/create/pulse.svg +12 -0
- datalab/data/icons/create/ring.svg +18 -0
- datalab/data/icons/create/sawtooth.svg +7 -0
- datalab/data/icons/create/siemens.svg +35 -0
- datalab/data/icons/create/sinc.svg +12 -0
- datalab/data/icons/create/sine.svg +7 -0
- datalab/data/icons/create/square.svg +7 -0
- datalab/data/icons/create/square_pulse.svg +7 -0
- datalab/data/icons/create/step.svg +7 -0
- datalab/data/icons/create/step_pulse.svg +12 -0
- datalab/data/icons/create/triangle.svg +7 -0
- datalab/data/icons/create/voigt.svg +12 -0
- datalab/data/icons/edit/annotations.svg +72 -0
- datalab/data/icons/edit/annotations_copy.svg +114 -0
- datalab/data/icons/edit/annotations_delete.svg +83 -0
- datalab/data/icons/edit/annotations_edit.svg +98 -0
- datalab/data/icons/edit/annotations_export.svg +85 -0
- datalab/data/icons/edit/annotations_import.svg +85 -0
- datalab/data/icons/edit/annotations_paste.svg +100 -0
- datalab/data/icons/edit/copy_titles.svg +109 -0
- datalab/data/icons/edit/delete.svg +84 -0
- datalab/data/icons/edit/delete_all.svg +214 -0
- datalab/data/icons/edit/duplicate.svg +64 -0
- datalab/data/icons/edit/goto_source.svg +60 -0
- datalab/data/icons/edit/metadata.svg +60 -0
- datalab/data/icons/edit/metadata_add.svg +80 -0
- datalab/data/icons/edit/metadata_copy.svg +96 -0
- datalab/data/icons/edit/metadata_delete.svg +62 -0
- datalab/data/icons/edit/metadata_export.svg +68 -0
- datalab/data/icons/edit/metadata_import.svg +68 -0
- datalab/data/icons/edit/metadata_paste.svg +79 -0
- datalab/data/icons/edit/move_down.svg +55 -0
- datalab/data/icons/edit/move_up.svg +54 -0
- datalab/data/icons/edit/new_group.svg +76 -0
- datalab/data/icons/edit/recompute.svg +60 -0
- datalab/data/icons/edit/rename.svg +49 -0
- datalab/data/icons/edit.svg +16 -0
- datalab/data/icons/expand.svg +44 -0
- datalab/data/icons/expand_selection.svg +63 -0
- datalab/data/icons/fit/cdf_fit.svg +56 -0
- datalab/data/icons/fit/exponential_fit.svg +55 -0
- datalab/data/icons/fit/gaussian_fit.svg +62 -0
- datalab/data/icons/fit/interactive_fit.svg +101 -0
- datalab/data/icons/fit/linear_fit.svg +57 -0
- datalab/data/icons/fit/lorentzian_fit.svg +209 -0
- datalab/data/icons/fit/multigaussian_fit.svg +85 -0
- datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
- datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
- datalab/data/icons/fit/planckian_fit.svg +62 -0
- datalab/data/icons/fit/polynomial_fit.svg +59 -0
- datalab/data/icons/fit/sigmoid_fit.svg +56 -0
- datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
- datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
- datalab/data/icons/fit/voigt_fit.svg +57 -0
- datalab/data/icons/group.svg +56 -0
- datalab/data/icons/h5/h5array.svg +59 -0
- datalab/data/icons/h5/h5attrs.svg +75 -0
- datalab/data/icons/h5/h5browser.svg +133 -0
- datalab/data/icons/h5/h5file.svg +69 -0
- datalab/data/icons/h5/h5group.svg +49 -0
- datalab/data/icons/h5/h5scalar.svg +1 -0
- datalab/data/icons/help_pdf.svg +46 -0
- datalab/data/icons/history.svg +7 -0
- datalab/data/icons/image.svg +135 -0
- datalab/data/icons/io/fileopen_directory.svg +60 -0
- datalab/data/icons/io/fileopen_h5.svg +84 -0
- datalab/data/icons/io/fileopen_ima.svg +187 -0
- datalab/data/icons/io/fileopen_py.svg +123 -0
- datalab/data/icons/io/fileopen_sig.svg +138 -0
- datalab/data/icons/io/filesave_h5.svg +97 -0
- datalab/data/icons/io/filesave_ima.svg +200 -0
- datalab/data/icons/io/filesave_py.svg +136 -0
- datalab/data/icons/io/filesave_sig.svg +151 -0
- datalab/data/icons/io/import_text.svg +144 -0
- datalab/data/icons/io/save_to_directory.svg +134 -0
- datalab/data/icons/io.svg +84 -0
- datalab/data/icons/libre-camera-flash-off.svg +1 -0
- datalab/data/icons/libre-camera-flash-on.svg +1 -0
- datalab/data/icons/libre-gui-about.svg +1 -0
- datalab/data/icons/libre-gui-action-delete.svg +1 -0
- datalab/data/icons/libre-gui-add.svg +1 -0
- datalab/data/icons/libre-gui-arrow-down.svg +1 -0
- datalab/data/icons/libre-gui-arrow-left.svg +1 -0
- datalab/data/icons/libre-gui-arrow-right.svg +1 -0
- datalab/data/icons/libre-gui-arrow-up.svg +1 -0
- datalab/data/icons/libre-gui-close.svg +40 -0
- datalab/data/icons/libre-gui-cogs.svg +1 -0
- datalab/data/icons/libre-gui-globe.svg +1 -0
- datalab/data/icons/libre-gui-help.svg +1 -0
- datalab/data/icons/libre-gui-link.svg +1 -0
- datalab/data/icons/libre-gui-menu.svg +1 -0
- datalab/data/icons/libre-gui-pencil.svg +1 -0
- datalab/data/icons/libre-gui-plugin.svg +1 -0
- datalab/data/icons/libre-gui-questions.svg +1 -0
- datalab/data/icons/libre-gui-settings.svg +1 -0
- datalab/data/icons/libre-gui-unlink.svg +1 -0
- datalab/data/icons/libre-tech-ram.svg +1 -0
- datalab/data/icons/libre-toolbox.svg +1 -0
- datalab/data/icons/logs.svg +1 -0
- datalab/data/icons/markers.svg +74 -0
- datalab/data/icons/menu.svg +13 -0
- datalab/data/icons/new_ima.svg +148 -0
- datalab/data/icons/new_sig.svg +123 -0
- datalab/data/icons/operations/abs.svg +116 -0
- datalab/data/icons/operations/arithmetic.svg +123 -0
- datalab/data/icons/operations/average.svg +124 -0
- datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
- datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
- datalab/data/icons/operations/constant.svg +116 -0
- datalab/data/icons/operations/constant_add.svg +109 -0
- datalab/data/icons/operations/constant_divide.svg +109 -0
- datalab/data/icons/operations/constant_multiply.svg +109 -0
- datalab/data/icons/operations/constant_subtract.svg +109 -0
- datalab/data/icons/operations/convert_dtype.svg +117 -0
- datalab/data/icons/operations/convolution.svg +46 -0
- datalab/data/icons/operations/deconvolution.svg +57 -0
- datalab/data/icons/operations/derivative.svg +127 -0
- datalab/data/icons/operations/difference.svg +52 -0
- datalab/data/icons/operations/division.svg +139 -0
- datalab/data/icons/operations/exp.svg +116 -0
- datalab/data/icons/operations/flip_horizontally.svg +69 -0
- datalab/data/icons/operations/flip_vertically.svg +74 -0
- datalab/data/icons/operations/im.svg +124 -0
- datalab/data/icons/operations/integral.svg +50 -0
- datalab/data/icons/operations/inverse.svg +143 -0
- datalab/data/icons/operations/log10.svg +109 -0
- datalab/data/icons/operations/phase.svg +116 -0
- datalab/data/icons/operations/power.svg +118 -0
- datalab/data/icons/operations/product.svg +124 -0
- datalab/data/icons/operations/profile.svg +379 -0
- datalab/data/icons/operations/profile_average.svg +399 -0
- datalab/data/icons/operations/profile_radial.svg +261 -0
- datalab/data/icons/operations/profile_segment.svg +262 -0
- datalab/data/icons/operations/quadratic_difference.svg +84 -0
- datalab/data/icons/operations/re.svg +124 -0
- datalab/data/icons/operations/rotate_left.svg +72 -0
- datalab/data/icons/operations/rotate_right.svg +72 -0
- datalab/data/icons/operations/signals_to_image.svg +314 -0
- datalab/data/icons/operations/sqrt.svg +110 -0
- datalab/data/icons/operations/std.svg +124 -0
- datalab/data/icons/operations/sum.svg +102 -0
- datalab/data/icons/play_demo.svg +9 -0
- datalab/data/icons/processing/axis_transform.svg +62 -0
- datalab/data/icons/processing/bandpass.svg +79 -0
- datalab/data/icons/processing/bandstop.svg +71 -0
- datalab/data/icons/processing/binning.svg +126 -0
- datalab/data/icons/processing/clip.svg +119 -0
- datalab/data/icons/processing/detrending.svg +173 -0
- datalab/data/icons/processing/distribute_on_grid.svg +769 -0
- datalab/data/icons/processing/edge_detection.svg +46 -0
- datalab/data/icons/processing/erase.svg +1 -0
- datalab/data/icons/processing/exposure.svg +143 -0
- datalab/data/icons/processing/fourier.svg +104 -0
- datalab/data/icons/processing/highpass.svg +59 -0
- datalab/data/icons/processing/interpolation.svg +71 -0
- datalab/data/icons/processing/level_adjustment.svg +70 -0
- datalab/data/icons/processing/lowpass.svg +60 -0
- datalab/data/icons/processing/morphology.svg +49 -0
- datalab/data/icons/processing/noise_addition.svg +114 -0
- datalab/data/icons/processing/noise_reduction.svg +38 -0
- datalab/data/icons/processing/normalize.svg +84 -0
- datalab/data/icons/processing/offset_correction.svg +131 -0
- datalab/data/icons/processing/resampling1d.svg +101 -0
- datalab/data/icons/processing/resampling2d.svg +240 -0
- datalab/data/icons/processing/reset_positions.svg +185 -0
- datalab/data/icons/processing/resize.svg +9 -0
- datalab/data/icons/processing/reverse_signal_x.svg +171 -0
- datalab/data/icons/processing/stability.svg +11 -0
- datalab/data/icons/processing/swap_x_y.svg +65 -0
- datalab/data/icons/processing/thresholding.svg +63 -0
- datalab/data/icons/processing/windowing.svg +45 -0
- datalab/data/icons/properties.svg +26 -0
- datalab/data/icons/reset.svg +9 -0
- datalab/data/icons/restore.svg +40 -0
- datalab/data/icons/roi/roi.svg +76 -0
- datalab/data/icons/roi/roi_coordinate.svg +78 -0
- datalab/data/icons/roi/roi_copy.svg +112 -0
- datalab/data/icons/roi/roi_delete.svg +81 -0
- datalab/data/icons/roi/roi_export.svg +87 -0
- datalab/data/icons/roi/roi_graphical.svg +78 -0
- datalab/data/icons/roi/roi_grid.svg +67 -0
- datalab/data/icons/roi/roi_ima.svg +188 -0
- datalab/data/icons/roi/roi_import.svg +87 -0
- datalab/data/icons/roi/roi_new.svg +81 -0
- datalab/data/icons/roi/roi_new_circle.svg +95 -0
- datalab/data/icons/roi/roi_new_polygon.svg +110 -0
- datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
- datalab/data/icons/roi/roi_paste.svg +98 -0
- datalab/data/icons/roi/roi_sig.svg +124 -0
- datalab/data/icons/shapes.svg +134 -0
- datalab/data/icons/signal.svg +103 -0
- datalab/data/icons/table.svg +85 -0
- datalab/data/icons/table_unavailable.svg +102 -0
- datalab/data/icons/to_signal.svg +124 -0
- datalab/data/icons/tour/next.svg +44 -0
- datalab/data/icons/tour/previous.svg +44 -0
- datalab/data/icons/tour/rewind.svg +51 -0
- datalab/data/icons/tour/stop.svg +47 -0
- datalab/data/icons/tour/tour.svg +16 -0
- datalab/data/icons/uncheck_all.svg +78 -0
- datalab/data/icons/view/curve_antialiasing.svg +50 -0
- datalab/data/icons/view/new_window.svg +98 -0
- datalab/data/icons/view/refresh-auto.svg +57 -0
- datalab/data/icons/view/refresh-manual.svg +51 -0
- datalab/data/icons/view/reset_curve_styles.svg +96 -0
- datalab/data/icons/view/show_first.svg +55 -0
- datalab/data/icons/view/show_titles.svg +46 -0
- datalab/data/icons/visualization.svg +51 -0
- datalab/data/logo/DataLab-Banner-150.png +0 -0
- datalab/data/logo/DataLab-Banner-200.png +0 -0
- datalab/data/logo/DataLab-Banner2-100.png +0 -0
- datalab/data/logo/DataLab-Splash.png +0 -0
- datalab/data/logo/DataLab-watermark.png +0 -0
- datalab/data/logo/DataLab.svg +83 -0
- datalab/data/tests/reordering_test.h5 +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
- datalab/env.py +542 -0
- datalab/gui/__init__.py +89 -0
- datalab/gui/actionhandler.py +1701 -0
- datalab/gui/docks.py +473 -0
- datalab/gui/h5io.py +150 -0
- datalab/gui/macroeditor.py +310 -0
- datalab/gui/main.py +2081 -0
- datalab/gui/newobject.py +217 -0
- datalab/gui/objectview.py +766 -0
- datalab/gui/panel/__init__.py +48 -0
- datalab/gui/panel/base.py +3254 -0
- datalab/gui/panel/image.py +157 -0
- datalab/gui/panel/macro.py +607 -0
- datalab/gui/panel/signal.py +164 -0
- datalab/gui/plothandler.py +800 -0
- datalab/gui/processor/__init__.py +84 -0
- datalab/gui/processor/base.py +2456 -0
- datalab/gui/processor/catcher.py +75 -0
- datalab/gui/processor/image.py +1214 -0
- datalab/gui/processor/signal.py +755 -0
- datalab/gui/profiledialog.py +333 -0
- datalab/gui/roieditor.py +633 -0
- datalab/gui/roigrideditor.py +208 -0
- datalab/gui/settings.py +612 -0
- datalab/gui/tour.py +908 -0
- datalab/h5/__init__.py +12 -0
- datalab/h5/common.py +314 -0
- datalab/h5/generic.py +580 -0
- datalab/h5/native.py +39 -0
- datalab/h5/utils.py +95 -0
- datalab/objectmodel.py +640 -0
- datalab/plugins/_readme_.txt +9 -0
- datalab/plugins/datalab_imageformats.py +175 -0
- datalab/plugins/datalab_testdata.py +190 -0
- datalab/plugins.py +355 -0
- datalab/tests/__init__.py +199 -0
- datalab/tests/backbone/__init__.py +1 -0
- datalab/tests/backbone/config_unit_test.py +170 -0
- datalab/tests/backbone/config_versioning_unit_test.py +34 -0
- datalab/tests/backbone/dictlistserial_app_test.py +38 -0
- datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
- datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
- datalab/tests/backbone/execenv_unit.py +262 -0
- datalab/tests/backbone/loadtest_gdi.py +147 -0
- datalab/tests/backbone/long_callback.py +96 -0
- datalab/tests/backbone/main_app_test.py +137 -0
- datalab/tests/backbone/memory_leak.py +43 -0
- datalab/tests/backbone/procisolation1_unit.py +128 -0
- datalab/tests/backbone/procisolation2_unit.py +171 -0
- datalab/tests/backbone/procisolation_unit_test.py +22 -0
- datalab/tests/backbone/profiling_app.py +27 -0
- datalab/tests/backbone/strings_unit_test.py +65 -0
- datalab/tests/backbone/title_formatting_unit_test.py +82 -0
- datalab/tests/conftest.py +131 -0
- datalab/tests/features/__init__.py +1 -0
- datalab/tests/features/applauncher/__init__.py +1 -0
- datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
- datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
- datalab/tests/features/common/__init__.py +1 -0
- datalab/tests/features/common/add_metadata_app_test.py +134 -0
- datalab/tests/features/common/add_metadata_unit_test.py +267 -0
- datalab/tests/features/common/annotations_management_unit_test.py +152 -0
- datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
- datalab/tests/features/common/createobject_unit_test.py +50 -0
- datalab/tests/features/common/geometry_results_app_test.py +135 -0
- datalab/tests/features/common/interactive_processing_test.py +1109 -0
- datalab/tests/features/common/io_app_test.py +75 -0
- datalab/tests/features/common/large_results_app_test.py +187 -0
- datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
- datalab/tests/features/common/metadata_app_test.py +139 -0
- datalab/tests/features/common/metadata_io_unit_test.py +60 -0
- datalab/tests/features/common/misc_app_test.py +236 -0
- datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
- datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
- datalab/tests/features/common/operation_modes_app_test.py +392 -0
- datalab/tests/features/common/plot_results_app_test.py +278 -0
- datalab/tests/features/common/reorder_app_test.py +75 -0
- datalab/tests/features/common/result_deletion_unit_test.py +96 -0
- datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
- datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
- datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
- datalab/tests/features/common/roieditor_unit_test.py +102 -0
- datalab/tests/features/common/save_to_dir_app_test.py +163 -0
- datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
- datalab/tests/features/common/stat_app_test.py +40 -0
- datalab/tests/features/common/stats_tools_unit_test.py +77 -0
- datalab/tests/features/common/table_results_app_test.py +52 -0
- datalab/tests/features/common/textimport_unit_test.py +131 -0
- datalab/tests/features/common/uuid_preservation_test.py +281 -0
- datalab/tests/features/common/worker_unit_test.py +402 -0
- datalab/tests/features/control/__init__.py +1 -0
- datalab/tests/features/control/connect_dialog.py +28 -0
- datalab/tests/features/control/embedded1_unit_test.py +304 -0
- datalab/tests/features/control/embedded2_unit_test.py +52 -0
- datalab/tests/features/control/remoteclient_app_test.py +219 -0
- datalab/tests/features/control/remoteclient_unit.py +75 -0
- datalab/tests/features/control/simpleclient_unit_test.py +321 -0
- datalab/tests/features/hdf5/__init__.py +1 -0
- datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
- datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
- datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
- datalab/tests/features/hdf5/h5import_app_test.py +25 -0
- datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
- datalab/tests/features/image/__init__.py +1 -0
- datalab/tests/features/image/annotations_app_test.py +28 -0
- datalab/tests/features/image/annotations_unit_test.py +80 -0
- datalab/tests/features/image/average_app_test.py +46 -0
- datalab/tests/features/image/background_dialog_test.py +70 -0
- datalab/tests/features/image/blobs_app_test.py +50 -0
- datalab/tests/features/image/contour_app_test.py +42 -0
- datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
- datalab/tests/features/image/denoise_app_test.py +31 -0
- datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
- datalab/tests/features/image/edges_app_test.py +31 -0
- datalab/tests/features/image/erase_app_test.py +21 -0
- datalab/tests/features/image/fft2d_app_test.py +27 -0
- datalab/tests/features/image/flatfield_app_test.py +40 -0
- datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
- datalab/tests/features/image/imagetools_app_test.py +51 -0
- datalab/tests/features/image/imagetools_unit_test.py +27 -0
- datalab/tests/features/image/load_app_test.py +73 -0
- datalab/tests/features/image/morph_app_test.py +32 -0
- datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
- datalab/tests/features/image/peak2d_app_test.py +53 -0
- datalab/tests/features/image/profile_app_test.py +73 -0
- datalab/tests/features/image/profile_dialog_test.py +56 -0
- datalab/tests/features/image/roi_app_test.py +98 -0
- datalab/tests/features/image/roi_circ_app_test.py +62 -0
- datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
- datalab/tests/features/image/roigrid_unit_test.py +60 -0
- datalab/tests/features/image/side_by_side_app_test.py +52 -0
- datalab/tests/features/macro/__init__.py +1 -0
- datalab/tests/features/macro/macro_app_test.py +28 -0
- datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
- datalab/tests/features/signal/__init__.py +1 -0
- datalab/tests/features/signal/baseline_dialog_test.py +53 -0
- datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
- datalab/tests/features/signal/fft1d_app_test.py +26 -0
- datalab/tests/features/signal/filter_app_test.py +44 -0
- datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
- datalab/tests/features/signal/interpolation_app_test.py +110 -0
- datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
- datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
- datalab/tests/features/signal/pulse_features_app_test.py +118 -0
- datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
- datalab/tests/features/signal/roi_app_test.py +78 -0
- datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
- datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
- datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
- datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
- datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
- datalab/tests/features/tour_unit_test.py +22 -0
- datalab/tests/features/utilities/__init__.py +1 -0
- datalab/tests/features/utilities/installconf_unit_test.py +21 -0
- datalab/tests/features/utilities/logview_app_test.py +21 -0
- datalab/tests/features/utilities/logview_error.py +24 -0
- datalab/tests/features/utilities/logview_unit_test.py +21 -0
- datalab/tests/features/utilities/memstatus_app_test.py +42 -0
- datalab/tests/features/utilities/settings_unit_test.py +88 -0
- datalab/tests/scenarios/__init__.py +1 -0
- datalab/tests/scenarios/beautiful_app.py +121 -0
- datalab/tests/scenarios/common.py +463 -0
- datalab/tests/scenarios/demo.py +212 -0
- datalab/tests/scenarios/example_app_test.py +47 -0
- datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
- datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
- datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
- datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
- datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
- datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
- datalab/utils/__init__.py +1 -0
- datalab/utils/conf.py +304 -0
- datalab/utils/dephash.py +105 -0
- datalab/utils/qthelpers.py +633 -0
- datalab/utils/strings.py +34 -0
- datalab/utils/tests.py +0 -0
- datalab/widgets/__init__.py +1 -0
- datalab/widgets/connection.py +138 -0
- datalab/widgets/filedialog.py +91 -0
- datalab/widgets/fileviewer.py +84 -0
- datalab/widgets/fitdialog.py +788 -0
- datalab/widgets/h5browser.py +1048 -0
- datalab/widgets/imagebackground.py +111 -0
- datalab/widgets/instconfviewer.py +175 -0
- datalab/widgets/logviewer.py +80 -0
- datalab/widgets/signalbaseline.py +90 -0
- datalab/widgets/signalcursor.py +208 -0
- datalab/widgets/signaldeltax.py +151 -0
- datalab/widgets/signalpeak.py +199 -0
- datalab/widgets/status.py +249 -0
- datalab/widgets/textimport.py +786 -0
- datalab/widgets/warningerror.py +223 -0
- datalab/widgets/wizard.py +286 -0
- datalab_platform-1.0.1.dist-info/METADATA +121 -0
- datalab_platform-1.0.1.dist-info/RECORD +494 -0
- datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
- datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_export.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="991"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.118644"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="-9"
|
|
50
|
+
inkscape:window-y="-9"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 11.533192,7.0991553 V 2.5703355 c 0.425492,-0.1515952 0.732345,-0.5536524 0.732345,-1.0311407 0,-0.60638114 -0.492136,-1.09851687 -1.098518,-1.09851687 -0.477487,0 -0.879546,0.30685172 -1.031141,0.73234437 H 2.6776803 C 2.526085,0.7475294 2.1240279,0.44067793 1.646539,0.44067793 c -0.6063812,0 -1.09851684,0.49213573 -1.09851684,1.09851687 0,0.4774883 0.30685233,0.8795456 0.73234464,1.0311407 v 4.5288198 c -0.42549231,0.1515956 -0.73234464,0.553653 -0.73234464,1.0311416 0,0.6063825 0.49213564,1.0985173 1.09851684,1.0985173 0.4774889,0 0.879546,-0.3068529 1.0311413,-0.732346 h 7.4581977 c 0.151595,0.4254943 0.553654,0.732346 1.031141,0.732346 0.606382,0 1.098518,-0.4921348 1.098518,-1.0985173 0,-0.4774895 -0.306853,-0.879546 -0.732345,-1.0311416 z M 10.135878,7.7641246 H 2.6776803 C 2.5678285,7.4536106 2.3232255,7.2097397 2.0127114,7.0991553 V 2.5703355 C 2.3232255,2.4597559 2.5670964,2.2158814 2.6776803,1.9053663 h 7.4581977 c 0.110585,0.3105151 0.354456,0.5543858 0.664969,0.6649692 v 4.5288198 c -0.310513,0.11058 -0.555117,0.3544553 -0.664969,0.6649693 z"
|
|
58
|
+
id="path6"
|
|
59
|
+
inkscape:connector-curvature="0"
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.46469" />
|
|
61
|
+
<path
|
|
62
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0103914;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
63
|
+
d="M 2.6199,7.6014496 C 2.5346707,7.4382782 2.305249,7.2138043 2.133326,7.1253688 L 2.016423,7.0652357 V 4.8342519 2.6032683 L 2.1593045,2.5286376 C 2.3224763,2.443408 2.5469503,2.2139863 2.6353852,2.0420633 L 2.6955189,1.9251599 H 6.40678 10.118041 l 0.06013,0.1169034 c 0.08844,0.171923 0.31291,0.4013447 0.476081,0.4865739 l 0.142882,0.074631 v 2.2314772 2.2314775 l -0.142882,0.074631 c -0.163173,0.08523 -0.387647,0.3146513 -0.476083,0.4865744 l -0.06014,0.1169034 H 6.4062858 2.694531 Z"
|
|
64
|
+
id="path1" />
|
|
65
|
+
<text
|
|
66
|
+
xml:space="preserve"
|
|
67
|
+
style="font-size:5.35456px;line-height:0.85;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';text-align:center;letter-spacing:0px;text-anchor:middle;opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
x="6.4067798"
|
|
69
|
+
y="6.6191649"
|
|
70
|
+
id="text1"><tspan
|
|
71
|
+
sodipodi:role="line"
|
|
72
|
+
id="tspan1"
|
|
73
|
+
x="6.4067798"
|
|
74
|
+
y="6.6191649"
|
|
75
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.35456px;font-family:'Franklin Gothic Medium';-inkscape-font-specification:'Franklin Gothic Medium, ';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-dasharray:none;stroke-opacity:1">ROI</tspan></text>
|
|
76
|
+
<g
|
|
77
|
+
fill="#ff5722"
|
|
78
|
+
id="g8-9"
|
|
79
|
+
transform="matrix(1.1132299,0,0,1.1132299,-0.13514767,2.8063317)">
|
|
80
|
+
<path
|
|
81
|
+
d="M 12.355,7 9.145,9.7 V 4.3 Z"
|
|
82
|
+
id="path4-4" />
|
|
83
|
+
<path
|
|
84
|
+
d="m 3.745,6.1 h 6.9 v 1.8 h -6.9 z"
|
|
85
|
+
id="path6-8" />
|
|
86
|
+
</g>
|
|
87
|
+
</svg>
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_graphical.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.118644"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 12.853106,8.297265 V 3.1264622 c 0.485809,-0.1730847 0.83616,-0.6321355 0.83616,-1.1773101 0,-0.6923386 -0.561898,-1.25423698 -1.254238,-1.25423698 -0.545174,0 -1.004226,0.35034958 -1.177311,0.83615768 H 2.742282 C 2.5691972,1.0452644 2.1101465,0.69491512 1.5649712,0.69491512 c -0.69233883,0 -1.25423716,0.56189838 -1.25423716,1.25423698 0,0.5451746 0.35035027,1.0042256 0.83615816,1.1773101 V 8.297265 C 0.66108431,8.47035 0.31073404,8.929401 0.31073404,9.474576 c 0,0.69234 0.56189833,1.254238 1.25423716,1.254238 0.5451753,0 1.004226,-0.350351 1.1773108,-0.83616 h 8.515435 c 0.173085,0.48581 0.632137,0.83616 1.177311,0.83616 0.69234,0 1.254238,-0.561898 1.254238,-1.254238 0,-0.545176 -0.350351,-1.004226 -0.83616,-1.177311 z M 11.257717,9.056497 H 2.742282 C 2.6168582,8.7019661 2.3375814,8.4235252 1.9830504,8.297265 V 3.1264622 C 2.3375814,3.0002072 2.6160222,2.7217623 2.742282,2.3672301 h 8.515435 c 0.126256,0.3545322 0.404701,0.6329728 0.759232,0.7592321 V 8.297265 c -0.354531,0.1262549 -0.633808,0.4047011 -0.759232,0.759232 z"
|
|
58
|
+
id="path6"
|
|
59
|
+
inkscape:connector-curvature="0"
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.67231" />
|
|
61
|
+
<path
|
|
62
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0118644;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
63
|
+
d="M 2.676311,8.870762 C 2.579,8.6844602 2.3170567,8.4281659 2.1207627,8.3271944 L 1.9872881,8.258537 V 5.7113001 3.1640633 l 0.1631356,-0.08521 C 2.336726,2.9815419 2.5930203,2.7195986 2.6939913,2.5233046 l 0.068658,-0.1334745 h 4.237351 4.2373507 l 0.06866,0.1334745 c 0.100972,0.196294 0.357266,0.4582373 0.543568,0.5555483 l 0.163136,0.08521 v 2.5478006 2.5478007 l -0.163136,0.08521 C 11.663274,8.442186 11.40698,8.704129 11.306008,8.900423 l -0.06866,0.133475 H 6.9994361 2.7615213 Z"
|
|
64
|
+
id="path1" />
|
|
65
|
+
<g
|
|
66
|
+
id="g6"
|
|
67
|
+
transform="matrix(0.16660078,0,0,0.16660078,-15.854599,-12.611447)">
|
|
68
|
+
<path
|
|
69
|
+
style="fill:#cccccc;stroke:none;stroke-width:0.296183;stroke-linecap:square;stroke-dashoffset:1.1932"
|
|
70
|
+
d="m 157.871,142.68385 -12.28021,-12.28022 -4.79322,4.77809 -4.79321,4.77809 -9.31827,-20.78315 c -5.12505,-11.43075 -9.28032,-20.813833 -9.23393,-20.851311 0.0463,-0.03746 9.25729,4.059371 20.46867,9.104121 11.21138,5.04473 20.54113,9.24048 20.73278,9.32388 0.19164,0.0834 -1.80699,2.32664 -4.44141,4.98501 l -4.78986,4.83338 12.36412,12.36043 12.3641,12.36043 -1.81293,1.83573 c -0.9971,1.00966 -1.89696,1.83573 -1.99966,1.83573 -0.10271,0 -5.71285,-5.5261 -12.46697,-12.28021 z"
|
|
71
|
+
id="path6-8" />
|
|
72
|
+
<path
|
|
73
|
+
d="m 119.47049,100.36099 38.62937,17.33414 -5.80074,5.80074 -2.96271,2.96271 2.96271,2.96271 19.69655,19.69655 -3.76729,3.76729 -19.69655,-19.69655 -2.96271,-2.96271 -2.9627,2.96271 -5.80075,5.80074 -17.33518,-38.62833 m -5.56922,-6.960472 c -0.94182,0 -1.70031,0.994204 -1.26345,1.967455 l 22.00449,49.038657 c 0.23886,0.5322 0.7522,0.82344 1.27392,0.82344 0.34991,0 0.70506,-0.13095 0.98163,-0.40858 l 8.67022,-8.67021 21.4639,21.46391 c 0.33001,0.33 0.76268,0.49553 1.19535,0.49553 0.43267,0 0.86535,-0.16553 1.1964,-0.49553 l 7.30095,-7.30096 c 0.66001,-0.66 0.66001,-1.73173 0,-2.39174 l -21.46286,-21.46391 8.67022,-8.67021 c 0.68934,-0.68934 0.47562,-1.85641 -0.41487,-2.25555 L 114.47852,93.527282 c -0.19486,-0.08695 -0.38972,-0.126764 -0.57725,-0.126764 z"
|
|
74
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:1.04763;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
75
|
+
stroke-linecap="round"
|
|
76
|
+
id="path1-2" />
|
|
77
|
+
</g>
|
|
78
|
+
</svg>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="roi_grid.svg"
|
|
10
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs16"><filter
|
|
17
|
+
style="color-interpolation-filters:sRGB;"
|
|
18
|
+
inkscape:label="Greyscale"
|
|
19
|
+
id="filter1"
|
|
20
|
+
x="0"
|
|
21
|
+
y="0"
|
|
22
|
+
width="1"
|
|
23
|
+
height="1"><feColorMatrix
|
|
24
|
+
values="0.21 0.72 0.072 0.0917431 0 0.21 0.72 0.072 0.0917431 0 0.21 0.72 0.072 0.0917431 0 0 0 0 1 0 "
|
|
25
|
+
id="feColorMatrix1" /></filter></defs><sodipodi:namedview
|
|
26
|
+
id="namedview14"
|
|
27
|
+
pagecolor="#ffffff"
|
|
28
|
+
bordercolor="#000000"
|
|
29
|
+
borderopacity="0.25"
|
|
30
|
+
inkscape:showpageshadow="2"
|
|
31
|
+
inkscape:pageopacity="0.0"
|
|
32
|
+
inkscape:pagecheckerboard="0"
|
|
33
|
+
inkscape:deskcolor="#d1d1d1"
|
|
34
|
+
showgrid="false"
|
|
35
|
+
inkscape:zoom="42.274884"
|
|
36
|
+
inkscape:cx="3.2998316"
|
|
37
|
+
inkscape:cy="5.9964683"
|
|
38
|
+
inkscape:window-width="1920"
|
|
39
|
+
inkscape:window-height="1009"
|
|
40
|
+
inkscape:window-x="-8"
|
|
41
|
+
inkscape:window-y="-8"
|
|
42
|
+
inkscape:window-maximized="1"
|
|
43
|
+
inkscape:current-layer="svg12" /><path
|
|
44
|
+
d="M 6.2389831,3.5755219 V 1.4156638 C 6.4419063,1.3433658 6.5882489,1.1516191 6.5882489,0.9238983 6.5882489,0.6347065 6.3535429,0.4 6.0643501,0.4 5.8366298,0.4 5.6448827,0.5463418 5.5725845,0.7492653 H 2.0156641 C 1.9433661,0.5463417 1.7516195,0.4 1.5238983,0.4 1.2347065,0.4 1,0.6347065 1,0.9238983 1,1.1516191 1.1463423,1.343366 1.3492655,1.4156638 V 3.5755219 C 1.1463423,3.6478199 1,3.8395666 1,4.0672875 c 0,0.2891926 0.2347065,0.5238986 0.5238983,0.5238986 0.2277212,0 0.4194679,-0.1463426 0.4917658,-0.3492658 h 3.5569204 c 0.072298,0.2029237 0.2640453,0.3492658 0.4917656,0.3492658 0.2891928,0 0.5238988,-0.234706 0.5238988,-0.5238986 0,-0.2277219 -0.1463426,-0.4194675 -0.3492658,-0.4917656 z M 5.5725845,3.8926546 H 2.0156641 C 1.9632743,3.7445662 1.8466196,3.6282612 1.6985311,3.5755219 V 1.4156638 c 0.1480885,-0.052737 0.264394,-0.1690442 0.317133,-0.3171332 h 3.5569204 c 0.052737,0.148089 0.1690444,0.2643944 0.3171328,0.3171332 V 3.5755219 C 5.7416289,3.6282579 5.6249742,3.7445662 5.5725845,3.8926546 Z"
|
|
45
|
+
id="path6"
|
|
46
|
+
inkscape:connector-curvature="0"
|
|
47
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:0.69853" /><path
|
|
48
|
+
d="M 12.63875,3.5755219 V 1.4156638 C 12.841664,1.3433658 12.988,1.1516191 12.988,0.9238983 12.988,0.6347065 12.753304,0.4 12.464124,0.4 12.236415,0.4 12.044676,0.5463418 11.972381,0.7492653 H 8.4156188 C 8.343324,0.5463417 8.151586,0.4 7.9238749,0.4 7.634696,0.4 7.4,0.6347065 7.4,0.9238983 7.4,1.1516191 7.5463358,1.343366 7.7492499,1.4156638 V 3.5755219 C 7.5463358,3.6478199 7.4,3.8395666 7.4,4.0672875 c 0,0.2891926 0.234696,0.5238986 0.5238749,0.5238986 0.2277111,0 0.4194492,-0.1463426 0.4917439,-0.3492658 h 3.5567622 c 0.0723,0.2029237 0.264034,0.3492658 0.491743,0.3492658 0.28918,0 0.523876,-0.234706 0.523876,-0.5238986 0,-0.2277219 -0.146336,-0.4194675 -0.34925,-0.4917656 z M 11.972381,3.8926546 H 8.4156188 C 8.3632313,3.7445662 8.2465818,3.6282612 8.0984999,3.5755219 V 1.4156638 C 8.2465818,1.3629268 8.3628821,1.2466196 8.4156188,1.0985306 h 3.5567622 c 0.05274,0.148089 0.169037,0.2643944 0.317118,0.3171332 v 2.1598581 c -0.148081,0.052736 -0.264731,0.1690443 -0.317118,0.3171327 z"
|
|
49
|
+
id="path6-0"
|
|
50
|
+
inkscape:connector-curvature="0"
|
|
51
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:0.698514" /><path
|
|
52
|
+
d="M 6.2389831,7.9755219 V 5.8156638 C 6.4419063,5.7433658 6.5882489,5.5516191 6.5882489,5.3238983 6.5882489,5.0347065 6.3535429,4.8 6.0643501,4.8 5.8366298,4.8 5.6448827,4.9463418 5.5725845,5.1492653 H 2.0156641 C 1.9433661,4.9463417 1.7516195,4.8 1.5238983,4.8 1.2347065,4.8 1,5.0347065 1,5.3238983 1,5.5516191 1.1463423,5.743366 1.3492655,5.8156638 V 7.9755219 C 1.1463423,8.0478199 1,8.2395666 1,8.4672875 c 0,0.2891926 0.2347065,0.5238986 0.5238983,0.5238986 0.2277212,0 0.4194679,-0.1463426 0.4917658,-0.3492658 h 3.5569204 c 0.072298,0.2029237 0.2640453,0.3492658 0.4917656,0.3492658 0.2891928,0 0.5238988,-0.234706 0.5238988,-0.5238986 0,-0.2277219 -0.1463426,-0.4194675 -0.3492658,-0.4917656 z M 5.5725845,8.2926546 H 2.0156641 C 1.9632743,8.1445662 1.8466196,8.0282612 1.6985311,7.9755219 V 5.8156638 c 0.1480885,-0.052737 0.264394,-0.1690442 0.317133,-0.3171332 h 3.5569204 c 0.052737,0.148089 0.1690444,0.2643944 0.3171328,0.3171332 V 7.9755219 C 5.7416289,8.0282579 5.6249742,8.1445662 5.5725845,8.2926546 Z"
|
|
53
|
+
id="path6-9"
|
|
54
|
+
inkscape:connector-curvature="0"
|
|
55
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:0.69853" /><path
|
|
56
|
+
d="M 12.63875,7.9755219 V 5.8156638 C 12.841664,5.7433658 12.988,5.5516191 12.988,5.3238983 12.988,5.0347065 12.753304,4.8 12.464124,4.8 12.236415,4.8 12.044676,4.9463418 11.972381,5.1492653 H 8.415619 C 8.343324,4.9463417 8.151586,4.8 7.923875,4.8 7.634696,4.8 7.4,5.0347065 7.4,5.3238983 7.4,5.5516191 7.546336,5.743366 7.74925,5.8156638 V 7.9755219 C 7.546336,8.0478199 7.4,8.2395666 7.4,8.4672875 c 0,0.2891926 0.234696,0.5238986 0.523875,0.5238986 0.227711,0 0.419449,-0.1463426 0.491744,-0.3492658 h 3.556762 c 0.0723,0.2029237 0.264034,0.3492658 0.491743,0.3492658 0.28918,0 0.523876,-0.234706 0.523876,-0.5238986 0,-0.2277219 -0.146336,-0.4194675 -0.34925,-0.4917656 z M 11.972381,8.2926546 H 8.415619 C 8.363231,8.1445662 8.246582,8.0282612 8.0985,7.9755219 V 5.8156638 C 8.246582,5.7629268 8.362882,5.6466196 8.415619,5.4985306 h 3.556762 c 0.05274,0.148089 0.169037,0.2643944 0.317118,0.3171332 v 2.1598581 c -0.148081,0.052736 -0.264731,0.1690443 -0.317118,0.3171327 z"
|
|
57
|
+
id="path6-0-4"
|
|
58
|
+
inkscape:connector-curvature="0"
|
|
59
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:0.698514" /><path
|
|
60
|
+
d="M 6.2389831,12.475522 V 10.315664 C 6.4419063,10.243364 6.5882489,10.051619 6.5882489,9.8238983 6.5882489,9.5347065 6.3535429,9.3 6.0643501,9.3 5.8366298,9.3 5.6448827,9.4463418 5.5725845,9.6492653 H 2.0156641 C 1.9433661,9.4463417 1.7516195,9.3 1.5238983,9.3 1.2347065,9.3 1,9.5347065 1,9.8238983 1,10.051619 1.1463423,10.243366 1.3492655,10.315664 v 2.159858 C 1.1463423,12.547822 1,12.739567 1,12.967287 c 0,0.289193 0.2347065,0.523899 0.5238983,0.523899 0.2277212,0 0.4194679,-0.146343 0.4917658,-0.349266 h 3.5569204 c 0.072298,0.202924 0.2640453,0.349266 0.4917656,0.349266 0.2891928,0 0.5238988,-0.234706 0.5238988,-0.523899 0,-0.227721 -0.1463426,-0.419467 -0.3492658,-0.491765 z M 5.5725845,12.792655 H 2.0156641 c -0.05239,-0.148089 -0.1690445,-0.264394 -0.317133,-0.317133 v -2.159858 c 0.1480885,-0.05274 0.264394,-0.169044 0.317133,-0.3171334 h 3.5569204 c 0.052737,0.1480894 0.1690444,0.2643944 0.3171328,0.3171334 v 2.159858 c -0.1480884,0.05274 -0.2647431,0.169044 -0.3171328,0.317133 z"
|
|
61
|
+
id="path6-8"
|
|
62
|
+
inkscape:connector-curvature="0"
|
|
63
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:0.69853" /><path
|
|
64
|
+
d="M 12.63875,12.475522 V 10.315664 C 12.841664,10.243364 12.988,10.051619 12.988,9.8238983 12.988,9.5347065 12.753304,9.3 12.464124,9.3 12.236415,9.3 12.044676,9.4463418 11.972381,9.6492653 H 8.4156188 C 8.343324,9.4463417 8.151586,9.3 7.9238749,9.3 7.634696,9.3 7.4,9.5347065 7.4,9.8238983 c 0,0.2277207 0.1463358,0.4194677 0.3492499,0.4917657 v 2.159858 C 7.5463358,12.547822 7.4,12.739567 7.4,12.967287 c 0,0.289193 0.234696,0.523899 0.5238749,0.523899 0.2277111,0 0.4194492,-0.146343 0.4917439,-0.349266 h 3.5567622 c 0.0723,0.202924 0.264034,0.349266 0.491743,0.349266 0.28918,0 0.523876,-0.234706 0.523876,-0.523899 0,-0.227721 -0.146336,-0.419467 -0.34925,-0.491765 z m -0.666369,0.317133 H 8.4156188 C 8.3632313,12.644566 8.2465818,12.528261 8.0984999,12.475522 V 10.315664 C 8.2465818,10.262924 8.3628821,10.14662 8.4156188,9.9985306 h 3.5567622 c 0.05274,0.1480894 0.169037,0.2643944 0.317118,0.3171334 v 2.159858 c -0.148081,0.05274 -0.264731,0.169044 -0.317118,0.317133 z"
|
|
65
|
+
id="path6-0-8"
|
|
66
|
+
inkscape:connector-curvature="0"
|
|
67
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:0.698514" /></svg>
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg12"
|
|
9
|
+
sodipodi:docname="roi_ima.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xml:space="preserve"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs16"><filter
|
|
17
|
+
style="color-interpolation-filters:sRGB;"
|
|
18
|
+
inkscape:label="Greyscale"
|
|
19
|
+
id="filter1"
|
|
20
|
+
x="0"
|
|
21
|
+
y="0"
|
|
22
|
+
width="1"
|
|
23
|
+
height="1"><feColorMatrix
|
|
24
|
+
values="0.21 0.72 0.072 0.0917431 0 0.21 0.72 0.072 0.0917431 0 0.21 0.72 0.072 0.0917431 0 0 0 0 1 0 "
|
|
25
|
+
id="feColorMatrix1" /></filter></defs><sodipodi:namedview
|
|
26
|
+
id="namedview14"
|
|
27
|
+
pagecolor="#ffffff"
|
|
28
|
+
bordercolor="#000000"
|
|
29
|
+
borderopacity="0.25"
|
|
30
|
+
inkscape:showpageshadow="2"
|
|
31
|
+
inkscape:pageopacity="0.0"
|
|
32
|
+
inkscape:pagecheckerboard="0"
|
|
33
|
+
inkscape:deskcolor="#d1d1d1"
|
|
34
|
+
showgrid="false"
|
|
35
|
+
inkscape:zoom="42.274884"
|
|
36
|
+
inkscape:cx="1.5966927"
|
|
37
|
+
inkscape:cy="5.9964683"
|
|
38
|
+
inkscape:window-width="1920"
|
|
39
|
+
inkscape:window-height="1009"
|
|
40
|
+
inkscape:window-x="1912"
|
|
41
|
+
inkscape:window-y="-8"
|
|
42
|
+
inkscape:window-maximized="1"
|
|
43
|
+
inkscape:current-layer="svg12" /><g
|
|
44
|
+
id="g22811-5"
|
|
45
|
+
transform="matrix(1.4849215,0,0.00170202,1.4849215,-2.8117154,-2.8004821)"
|
|
46
|
+
style="filter:url(#filter1)"><rect
|
|
47
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
48
|
+
id="rect10749-79"
|
|
49
|
+
width="2"
|
|
50
|
+
height="2"
|
|
51
|
+
x="2.5999999"
|
|
52
|
+
y="2.5999999" /><rect
|
|
53
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
54
|
+
id="rect10749-7-2"
|
|
55
|
+
width="2"
|
|
56
|
+
height="2"
|
|
57
|
+
x="2.5999999"
|
|
58
|
+
y="4.5999999" /><rect
|
|
59
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
60
|
+
id="rect10749-1-7"
|
|
61
|
+
width="2"
|
|
62
|
+
height="2"
|
|
63
|
+
x="4.5999999"
|
|
64
|
+
y="2.5999999" /><rect
|
|
65
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
66
|
+
id="rect10749-7-5-8"
|
|
67
|
+
width="2"
|
|
68
|
+
height="2"
|
|
69
|
+
x="4.5999999"
|
|
70
|
+
y="4.5999999" /><rect
|
|
71
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
72
|
+
id="rect10749-8-0"
|
|
73
|
+
width="2"
|
|
74
|
+
height="2"
|
|
75
|
+
x="6.5999999"
|
|
76
|
+
y="2.5999999" /><rect
|
|
77
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
78
|
+
id="rect10749-7-0-6"
|
|
79
|
+
width="2"
|
|
80
|
+
height="2"
|
|
81
|
+
x="6.5999999"
|
|
82
|
+
y="4.5999999" /><rect
|
|
83
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
84
|
+
id="rect10749-1-4-7"
|
|
85
|
+
width="2"
|
|
86
|
+
height="2"
|
|
87
|
+
x="8.6000004"
|
|
88
|
+
y="2.5999999" /><rect
|
|
89
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
90
|
+
id="rect10749-7-5-5-0"
|
|
91
|
+
width="2"
|
|
92
|
+
height="2"
|
|
93
|
+
x="8.6000004"
|
|
94
|
+
y="4.5999999" /><rect
|
|
95
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
96
|
+
id="rect10749-84-1"
|
|
97
|
+
width="2"
|
|
98
|
+
height="2"
|
|
99
|
+
x="2.5999999"
|
|
100
|
+
y="6.5999999" /><rect
|
|
101
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
102
|
+
id="rect10749-7-8-7"
|
|
103
|
+
width="2"
|
|
104
|
+
height="2"
|
|
105
|
+
x="2.5999999"
|
|
106
|
+
y="8.6000004" /><rect
|
|
107
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
108
|
+
id="rect10749-1-1-5"
|
|
109
|
+
width="2"
|
|
110
|
+
height="2"
|
|
111
|
+
x="4.5999999"
|
|
112
|
+
y="6.5999999" /><rect
|
|
113
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
114
|
+
id="rect10749-7-5-4-6"
|
|
115
|
+
width="2"
|
|
116
|
+
height="2"
|
|
117
|
+
x="4.5999999"
|
|
118
|
+
y="8.6000004" /><rect
|
|
119
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
120
|
+
id="rect10749-8-8-3"
|
|
121
|
+
width="2"
|
|
122
|
+
height="2"
|
|
123
|
+
x="6.5999999"
|
|
124
|
+
y="6.5999999" /><rect
|
|
125
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
126
|
+
id="rect10749-7-0-4-5"
|
|
127
|
+
width="2"
|
|
128
|
+
height="2"
|
|
129
|
+
x="6.5999999"
|
|
130
|
+
y="8.6000004" /><rect
|
|
131
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
132
|
+
id="rect10749-1-4-3-0"
|
|
133
|
+
width="2"
|
|
134
|
+
height="2"
|
|
135
|
+
x="8.6000004"
|
|
136
|
+
y="6.5999999" /><rect
|
|
137
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
138
|
+
id="rect10749-7-5-5-3-7"
|
|
139
|
+
width="2"
|
|
140
|
+
height="2"
|
|
141
|
+
x="8.6000004"
|
|
142
|
+
y="8.6000004" /></g><rect
|
|
143
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.596939;stroke-opacity:1"
|
|
144
|
+
id="rect10749-1-1"
|
|
145
|
+
width="2.9698429"
|
|
146
|
+
height="2.9698451"
|
|
147
|
+
x="4.0221334"
|
|
148
|
+
y="7.0000043"
|
|
149
|
+
transform="skewX(0.06567247)" /><rect
|
|
150
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.596939;stroke-opacity:1"
|
|
151
|
+
id="rect10749-7-5-4"
|
|
152
|
+
width="2.9698429"
|
|
153
|
+
height="2.9698451"
|
|
154
|
+
x="4.0221334"
|
|
155
|
+
y="9.9698496"
|
|
156
|
+
transform="skewX(0.06567247)" /><rect
|
|
157
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.596939;stroke-opacity:1"
|
|
158
|
+
id="rect10749-8-8"
|
|
159
|
+
width="2.9698429"
|
|
160
|
+
height="2.9698451"
|
|
161
|
+
x="6.9919763"
|
|
162
|
+
y="7.0000043"
|
|
163
|
+
transform="skewX(0.06567247)" /><rect
|
|
164
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.596939;stroke-opacity:1"
|
|
165
|
+
id="rect10749-7-0-4"
|
|
166
|
+
width="2.9698429"
|
|
167
|
+
height="2.9698451"
|
|
168
|
+
x="6.9919763"
|
|
169
|
+
y="9.9698496"
|
|
170
|
+
transform="skewX(0.06567247)" /><rect
|
|
171
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.596939;stroke-opacity:1"
|
|
172
|
+
id="rect10749-1-4-3"
|
|
173
|
+
width="2.9698429"
|
|
174
|
+
height="2.9698451"
|
|
175
|
+
x="9.9618196"
|
|
176
|
+
y="7.0000043"
|
|
177
|
+
transform="skewX(0.06567247)" /><rect
|
|
178
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.596939;stroke-opacity:1"
|
|
179
|
+
id="rect10749-7-5-5-3"
|
|
180
|
+
width="2.9698429"
|
|
181
|
+
height="2.9698451"
|
|
182
|
+
x="9.9618196"
|
|
183
|
+
y="9.9698496"
|
|
184
|
+
transform="skewX(0.06567247)" /><path
|
|
185
|
+
d="M 13.304784,11.978313 V 7.6790994 C 13.708704,7.5351899 14,7.1535166 14,6.7002365 14,6.1245982 13.532816,5.6574131 12.957176,5.6574131 c -0.453279,0 -0.834953,0.2912946 -0.978863,0.6952153 H 4.8982369 C 4.7543273,5.9487075 4.3726541,5.6574131 3.9193734,5.6574131 c -0.5756384,0 -1.0428234,0.4671851 -1.0428234,1.0428234 0,0.4532801 0.2912954,0.8349536 0.6952156,0.9788629 V 11.978313 C 3.1678454,12.122223 2.87655,12.503896 2.87655,12.957176 2.87655,13.532816 3.343735,14 3.9193734,14 4.3726541,14 4.7543273,13.708704 4.8982369,13.304784 H 11.978313 C 12.122223,13.708705 12.503897,14 12.957176,14 13.532816,14 14,13.532816 14,12.957176 14,12.503894 13.708704,12.122223 13.304784,11.978313 Z m -1.326471,0.631255 H 4.8982369 C 4.7939545,12.314797 4.5617525,12.083291 4.2669812,11.978313 V 7.6790994 C 4.5617525,7.574126 4.7932595,7.3426157 4.8982369,7.0478434 h 7.0800761 c 0.104973,0.2947723 0.336484,0.526279 0.631255,0.631256 v 4.2992136 c -0.294771,0.104972 -0.526973,0.336484 -0.631255,0.631255 z"
|
|
186
|
+
id="path6"
|
|
187
|
+
inkscape:connector-curvature="0"
|
|
188
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.39043" /></svg>
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_import.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="991"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.118644"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="-9"
|
|
50
|
+
inkscape:window-y="-9"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 11.533192,7.0991553 V 2.5703355 c 0.425492,-0.1515952 0.732345,-0.5536524 0.732345,-1.0311407 0,-0.60638114 -0.492136,-1.09851687 -1.098518,-1.09851687 -0.477487,0 -0.879546,0.30685172 -1.031141,0.73234437 H 2.6776803 C 2.526085,0.7475294 2.1240279,0.44067793 1.646539,0.44067793 c -0.6063812,0 -1.09851684,0.49213573 -1.09851684,1.09851687 0,0.4774883 0.30685233,0.8795456 0.73234464,1.0311407 v 4.5288198 c -0.42549231,0.1515956 -0.73234464,0.553653 -0.73234464,1.0311416 0,0.6063825 0.49213564,1.0985173 1.09851684,1.0985173 0.4774889,0 0.879546,-0.3068529 1.0311413,-0.732346 h 7.4581977 c 0.151595,0.4254943 0.553654,0.732346 1.031141,0.732346 0.606382,0 1.098518,-0.4921348 1.098518,-1.0985173 0,-0.4774895 -0.306853,-0.879546 -0.732345,-1.0311416 z M 10.135878,7.7641246 H 2.6776803 C 2.5678285,7.4536106 2.3232255,7.2097397 2.0127114,7.0991553 V 2.5703355 C 2.3232255,2.4597559 2.5670964,2.2158814 2.6776803,1.9053663 h 7.4581977 c 0.110585,0.3105151 0.354456,0.5543858 0.664969,0.6649692 v 4.5288198 c -0.310513,0.11058 -0.555117,0.3544553 -0.664969,0.6649693 z"
|
|
58
|
+
id="path6"
|
|
59
|
+
inkscape:connector-curvature="0"
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.46469" />
|
|
61
|
+
<path
|
|
62
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0103914;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
63
|
+
d="M 2.6199,7.6014496 C 2.5346707,7.4382782 2.305249,7.2138043 2.133326,7.1253688 L 2.016423,7.0652357 V 4.8342519 2.6032683 L 2.1593045,2.5286376 C 2.3224763,2.443408 2.5469503,2.2139863 2.6353852,2.0420633 L 2.6955189,1.9251599 H 6.40678 10.118041 l 0.06013,0.1169034 c 0.08844,0.171923 0.31291,0.4013447 0.476081,0.4865739 l 0.142882,0.074631 v 2.2314772 2.2314775 l -0.142882,0.074631 c -0.163173,0.08523 -0.387647,0.3146513 -0.476083,0.4865744 l -0.06014,0.1169034 H 6.4062858 2.694531 Z"
|
|
64
|
+
id="path1" />
|
|
65
|
+
<text
|
|
66
|
+
xml:space="preserve"
|
|
67
|
+
style="font-size:5.35456px;line-height:0.85;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';text-align:center;letter-spacing:0px;text-anchor:middle;opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
x="6.4067798"
|
|
69
|
+
y="6.6191649"
|
|
70
|
+
id="text1"><tspan
|
|
71
|
+
sodipodi:role="line"
|
|
72
|
+
id="tspan1"
|
|
73
|
+
x="6.4067798"
|
|
74
|
+
y="6.6191649"
|
|
75
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.35456px;font-family:'Franklin Gothic Medium';-inkscape-font-specification:'Franklin Gothic Medium, ';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-dasharray:none;stroke-opacity:1">ROI</tspan></text>
|
|
76
|
+
<g
|
|
77
|
+
fill="#e91e63"
|
|
78
|
+
id="g8"
|
|
79
|
+
transform="matrix(1.1332261,0,0,1.1332261,-0.50629828,2.7098067)">
|
|
80
|
+
<path
|
|
81
|
+
d="M 3.64,7 6.85,4.3 v 5.4 z"
|
|
82
|
+
id="path4" />
|
|
83
|
+
<path
|
|
84
|
+
d="m 5.35,6.1 h 6.9 v 1.8 h -6.9 z"
|
|
85
|
+
id="path6-0" />
|
|
86
|
+
</g>
|
|
87
|
+
</svg>
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_new.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.118644"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="1912"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 12.853106,8.949807 V 3.7790042 c 0.485809,-0.1730847 0.83616,-0.6321355 0.83616,-1.1773101 0,-0.6923386 -0.561898,-1.2542368 -1.254238,-1.2542368 -0.545174,0 -1.004226,0.3503494 -1.177311,0.8361575 H 2.742282 C 2.5691972,1.6978064 2.1101465,1.3474573 1.5649712,1.3474573 c -0.69233883,0 -1.25423716,0.5618982 -1.25423716,1.2542368 0,0.5451746 0.35035027,1.0042256 0.83615816,1.1773101 V 8.949807 c -0.48580789,0.173085 -0.83615816,0.632136 -0.83615816,1.177311 0,0.69234 0.56189833,1.254238 1.25423716,1.254238 0.5451753,0 1.004226,-0.350351 1.1773108,-0.83616 h 8.515435 c 0.173085,0.48581 0.632137,0.83616 1.177311,0.83616 0.69234,0 1.254238,-0.561898 1.254238,-1.254238 0,-0.545176 -0.350351,-1.004226 -0.83616,-1.177311 z M 11.257717,9.709039 H 2.742282 C 2.6168582,9.3545081 2.3375814,9.0760672 1.9830504,8.949807 V 3.7790042 C 2.3375814,3.6527492 2.6160222,3.3743043 2.742282,3.0197721 h 8.515435 c 0.126256,0.3545322 0.404701,0.6329728 0.759232,0.7592321 V 8.949807 c -0.354531,0.1262549 -0.633808,0.4047011 -0.759232,0.759232 z"
|
|
58
|
+
id="path6"
|
|
59
|
+
inkscape:connector-curvature="0"
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.67231" />
|
|
61
|
+
<path
|
|
62
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0118644;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
63
|
+
d="M 2.676311,9.523304 C 2.579,9.3370022 2.3170567,9.0807079 2.1207627,8.9797364 L 1.9872881,8.911079 V 6.3638421 3.8166053 l 0.1631356,-0.08521 C 2.336726,3.6340839 2.5930203,3.3721406 2.6939913,3.1758466 l 0.068658,-0.1334745 h 4.237351 4.2373507 l 0.06866,0.1334745 c 0.100972,0.196294 0.357266,0.4582373 0.543568,0.5555483 l 0.163136,0.08521 v 2.5478006 2.5478007 l -0.163136,0.08521 C 11.663274,9.094728 11.40698,9.356671 11.306008,9.552965 L 11.237348,9.68644 H 6.9994361 2.7615213 Z"
|
|
64
|
+
id="path1" />
|
|
65
|
+
<text
|
|
66
|
+
xml:space="preserve"
|
|
67
|
+
style="font-size:6.1136px;line-height:0.85;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';text-align:center;letter-spacing:0px;text-anchor:middle;opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.224032;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
x="7"
|
|
69
|
+
y="8.4017754"
|
|
70
|
+
id="text1"><tspan
|
|
71
|
+
sodipodi:role="line"
|
|
72
|
+
id="tspan1"
|
|
73
|
+
x="7"
|
|
74
|
+
y="8.4017754"
|
|
75
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.1136px;font-family:'Franklin Gothic Medium';-inkscape-font-specification:'Franklin Gothic Medium, ';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.224032;stroke-dasharray:none;stroke-opacity:1">ROI</tspan></text>
|
|
76
|
+
<path
|
|
77
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#ff6600;stroke-width:0.436794;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
78
|
+
d="m 9.0295425,6.8709371 v 2.1990978 h -2.200976 v 2.2412811 h 2.200976 v 2.199098 h 2.2375215 v -2.199098 h 2.200977 V 9.0700349 H 11.267064 V 6.8709371 Z"
|
|
79
|
+
id="rect3031"
|
|
80
|
+
inkscape:connector-curvature="0" />
|
|
81
|
+
</svg>
|