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,114 @@
|
|
|
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="svg8"
|
|
9
|
+
sodipodi:docname="add_noise.svg"
|
|
10
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="14.033654"
|
|
85
|
+
inkscape:cy="5.9062499"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 13.767717,3.2098823 v 7.5802357 c 0,0.52114 -0.716585,0.947529 -1.592407,0.947529 H 1.8246868 c -0.8758222,0 -1.5924038,-0.426389 -1.5924038,-0.947529 V 3.2098823 c 0,-0.5211415 0.7165816,-0.9475292 1.5924038,-0.9475292 H 12.17531 c 0.875822,0 1.592407,0.4263877 1.592407,0.9475292 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.06389" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:7.29516px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.319163"
|
|
101
|
+
x="-0.194748"
|
|
102
|
+
y="9.5032225"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="-0.194748"
|
|
107
|
+
y="9.5032225"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.29516px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.319163">+</tspan></text>
|
|
109
|
+
<polyline
|
|
110
|
+
points="12.00,10.44 12.27,13.21 12.55,9.41 12.82,11.87 13.09,10.64 13.36,8.76 13.64,11.61 13.91,9.08 14.18,11.79 14.45,9.89 14.73,10.14 15.00,12.08 15.27,14.27 15.55,9.72 15.82,10.00 16.09,12.21 16.36,14.10 16.64,12.02 16.91,11.23 17.18,15.05 17.45,9.75 17.73,14.75 18.00,11.27 18.27,10.17 18.55,9.69 18.82,10.51 19.09,13.34 19.36,9.49 19.64,12.05 19.91,12.68 20.18,11.42 20.45,12.75 20.73,9.97 21.00,9.89"
|
|
111
|
+
id="polyline2"
|
|
112
|
+
transform="matrix(0.89438529,0,0,1.0820077,-5.2711173,-5.4894961)"
|
|
113
|
+
style="fill:none;stroke:#000000;stroke-width:0.225218;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none" />
|
|
114
|
+
</svg>
|
|
@@ -0,0 +1,38 @@
|
|
|
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="svg8"
|
|
9
|
+
sodipodi:docname="noise_reduction.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="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="42.022346"
|
|
26
|
+
inkscape:cx="5.46138"
|
|
27
|
+
inkscape:cy="8.8167376"
|
|
28
|
+
inkscape:window-width="1920"
|
|
29
|
+
inkscape:window-height="1009"
|
|
30
|
+
inkscape:window-x="-8"
|
|
31
|
+
inkscape:window-y="-8"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8"
|
|
34
|
+
inkscape:showpageshadow="2"
|
|
35
|
+
inkscape:deskcolor="#d1d1d1" /><path
|
|
36
|
+
style="fill:#333333;stroke-width:0.874049"
|
|
37
|
+
d="M 2.2116603,12.673973 C 2.0006389,12.636123 1.8035113,12.536427 1.6503575,12.390104 1.493478,12.240223 1.3907936,12.059669 1.3342149,11.834217 l -0.018207,-0.07256 -0.00255,-2.2469338 -0.00255,-2.246936 H 0.7690404 0.2271851 v -0.268864 -0.268863 h 6.7728145 6.7728154 v 0.2688 0.268801 l -0.539861,0.0022 -0.539864,0.0022 -0.0044,2.249069 c -0.005,2.4798848 -7.5e-5,2.2668868 -0.05573,2.4340018 -0.122913,0.369081 -0.463402,0.656895 -0.851598,0.719856 -0.116187,0.01884 -9.4644301,0.01786 -9.5696127,-0.0011 z M 2.932899,11.60803 V 11.066034 H 3.2060308 3.4791627 V 10.792902 10.51977 h 0.2688641 0.268864 v 0.541997 0.541996 H 3.7480268 3.4791627 v 0.273131 0.273133 h 0.5419958 0.5419959 v -0.273133 -0.273131 h 0.2687442 0.2687441 l 0.00225,0.270998 0.00225,0.270996 0.5398621,0.0022 0.5398621,0.0022 V 11.876994 11.603798 H 6.4579997 6.7311314 V 11.06182 10.519824 h 0.2688642 0.2688641 v 0.273132 0.273132 h 0.2731346 0.2731319 v -0.273132 -0.273132 h 0.2688641 0.2688641 v 0.541932 0.541932 l -0.5398621,0.0022 -0.539862,0.0022 v 0.268864 0.268864 l 0.539862,0.0022 0.5398621,0.0022 v -0.273068 -0.273179 h 0.2731379 0.2731318 v 0.273131 0.273132 h 0.2688611 0.2688649 v -0.541961 -0.541996 h 0.5419953 0.5419956 v 0.268864 0.268863 H 10.251977 9.9831124 v 0.273132 0.273132 h 0.2688646 0.268864 v -0.273132 -0.273132 h 0.273131 0.273132 v 0.273132 0.273132 h 0.289453 c 0.336959,0 0.383562,-0.0058 0.495513,-0.06092 0.100519,-0.04955 0.188553,-0.137592 0.238107,-0.238107 0.06023,-0.122176 0.06092,-0.130858 0.06092,-0.768645 V 10.520063 H 11.877962 11.60483 V 10.250907 9.9820432 h 0.273132 0.273131 V 9.4400472 8.8980522 H 11.877842 11.60459 l 0.0022,-0.270998 0.0022,-0.270998 0.271061,-0.0023 0.271062,-0.0023 -0.0022,-0.539743 -0.0022,-0.539741 h -0.268926 -0.268864 l -0.0022,0.270997 -0.0022,0.270998 H 11.33587 11.067245 l -0.0022,-0.270998 -0.0022,-0.270997 -0.539861,-0.0022 -0.5398636,-0.0022 v 0.273184 0.273196 H 9.7099603 9.4368288 v -0.273188 -0.273195 l -0.5398625,0.0022 -0.5398621,0.0022 -0.00225,0.270998 -0.00225,0.270997 H 8.0838713 7.8151297 v -0.273233 -0.273252 l -0.2709979,0.0023 -0.2709979,0.0023 -0.00225,0.270998 -0.00225,0.270998 H 6.9998796 6.7311379 v -0.273249 -0.273252 l -0.270998,0.0023 -0.2709979,0.0023 -0.00219,0.539862 -0.00219,0.539862 H 5.9159466 5.6471461 V 7.8098442 7.2678492 H 5.1051503 4.5631544 v 0.273251 0.273252 l -0.270998,-0.0023 -0.2709979,-0.0023 -0.00225,-0.271061 -0.00225,-0.271062 -0.5397421,0.0022 -0.539742,0.0022 -0.00225,0.270998 -0.00225,0.270998 H 2.6639151 2.3951708 v -0.273236 -0.273253 l -0.2709979,0.0023 -0.270998,0.0023 v 0.268862 0.268864 l 0.270998,0.0023 0.2709979,0.0023 v 0.268618 0.268624 l -0.2709979,0.0023 -0.270998,0.0023 -0.00219,0.539862 -0.00219,0.539863 h 0.2731895 0.2731955 v 0.273131 0.273131 H 2.1219824 1.848787 l 0.00219,0.5398608 0.00219,0.539863 0.2709981,0.0022 0.2709979,0.0022 v 0.268736 0.268744 H 2.1250872 1.8550034 l 0.00455,0.06615 c 0.013272,0.19314 0.1595773,0.379024 0.3513856,0.446438 0.079955,0.0281 0.1265154,0.03164 0.4296284,0.03268 l 0.2923364,9.62e-4 z M 5.1008827,11.334899 V 11.066034 H 4.8320185 4.5631544 V 10.792902 10.51977 H 4.2900227 4.0168908 V 10.250907 9.9820432 H 4.2900227 4.5631544 V 9.7089112 9.4357792 H 4.2900227 4.0168908 V 9.1669152 8.8980522 H 3.4748949 2.932899 v 0.268863 0.268864 h 0.2731318 0.2731319 v 0.541877 0.5418748 l -0.2709981,0.0022 -0.2709979,0.0022 -0.00225,0.270997 -0.00225,0.270999 H 2.6639151 2.3951708 V 10.523952 9.9819562 H 2.664035 2.932899 V 9.7088672 9.4357352 H 2.664035 2.3951708 V 8.8937842 8.3517882 H 2.664035 2.932899 v -0.268864 -0.268864 h 0.2731318 0.2731319 v 0.268864 0.268864 h 0.2688641 0.268864 v 0.273132 0.273132 h 0.541996 0.5419959 v 0.541995 0.541996 h 0.2731317 0.2731317 v 0.2688638 0.268863 h 0.2688642 0.2688641 v 0.541997 0.541996 H 5.6428786 5.1008827 Z M 5.6471461,10.792902 V 10.51977 H 5.3740144 5.1008827 V 10.250907 9.9820432 H 4.8320185 4.5631544 v 0.2688638 0.268863 h 0.2688641 0.2688642 v 0.273132 0.273132 h 0.2731317 0.2731317 z m 5.4199579,0.541997 V 11.066034 H 10.793972 10.520841 V 10.792902 10.51977 H 9.9788454 9.4368501 v 0.273132 0.273132 H 9.1679852 8.8991215 V 10.792902 10.51977 H 8.6259261 8.3527307 l 0.00219,-0.5398598 0.00219,-0.539863 0.5398621,-0.0022 0.5398618,-0.0022 V 8.8937202 8.3517882 H 8.8948537 8.3528578 v 0.273132 0.273132 H 8.0839937 7.8151297 v 0.268863 0.268864 H 7.5419979 7.2688661 v 0.273132 0.273132 H 7.5419979 7.8151297 V 10.250907 10.51977 H 7.5419979 7.2688661 V 10.250907 9.9820432 H 6.7268703 6.1848744 V 9.7089112 9.4357792 H 5.9160103 5.6471461 v -0.268864 -0.268863 h 0.2688642 0.2688641 v -0.273132 -0.273132 h 1.0839917 1.0839917 v -0.268864 -0.268864 h 0.5419959 0.5419964 v 0.268864 0.268864 h 0.5419953 0.5419956 v -0.268864 -0.268864 h 0.273131 0.273132 v 0.268864 0.268864 h -0.273132 -0.273131 v 0.273132 0.273132 h 0.273131 0.273132 v 0.268863 0.268864 h 0.268865 0.268864 v 0.273132 0.273132 h -0.268864 -0.268865 v -0.273132 -0.273132 h -0.273132 -0.273131 v 0.541996 0.5419948 h 0.541996 0.541996 v 0.541997 0.541996 H 11.335969 11.067104 Z M 9.4368501,10.250907 V 9.9820432 h 0.2731316 0.2731307 v -0.273132 -0.273132 h 0.2688646 0.268864 V 9.1669152 8.8980522 H 10.251977 9.9831124 v 0.268863 0.268864 H 9.7099817 9.4368501 v 0.273132 0.273132 H 9.1679852 8.8991215 V 10.250907 10.51977 H 9.1679852 9.4368501 Z M 7.2688661,9.1669152 V 8.8980522 H 6.7268703 6.1848744 v 0.268863 0.268864 H 6.7268703 7.2688661 Z M 4.5631544,8.0829242 v -0.268864 h 0.2688641 0.2688642 v 0.268864 0.268864 H 4.8320185 4.5631544 Z M 1.313564,4.2100012 c 0.00296,-2.16594 -0.00147,-1.983478 0.052287,-2.153047 0.1243557,-0.392296 0.491242,-0.691697 0.9053754,-0.73884 0.052054,-0.0059 1.6020109,-0.0079 4.7842551,-0.0061 l 4.7072555,0.0027 0.07256,0.01828 c 0.449501,0.113271 0.76451,0.444992 0.840455,0.885041 0.01149,0.06659 0.01309,0.312118 0.01309,2.020748 v 1.944946 h -0.268737 -0.268738 l -0.0024,-1.94393 c -0.0022,-1.798988 -0.0036,-1.947402 -0.01689,-1.990488 -0.06015,-0.193611 -0.198825,-0.328966 -0.391603,-0.382221 -0.05178,-0.01431 -0.28925,-0.01506 -4.7404371,-0.01506 -4.5070457,0 -4.6880088,5.93e-4 -4.7407146,0.01555 -0.1914111,0.0543 -0.3317295,0.193156 -0.390234,0.386153 -0.014564,0.04805 -0.015496,0.151325 -0.01795,1.990337 l -0.00263,1.93966 H 1.579688 1.3108612 Z m 7.5855575,1.162944 v -0.273132 h 0.2688637 0.2688649 v 0.273132 0.273131 H 9.1679852 8.8991215 Z M 4.0168908,4.8309492 v -0.268864 h 0.2731319 0.2731317 v 0.268864 0.268864 H 4.2900227 4.0168908 Z m 3.2519753,0 v -0.268864 h 0.2731318 0.2731318 v 0.268864 0.268864 H 7.5419979 7.2688661 Z M 2.3951708,3.7469572 V 3.4780932 H 2.664035 2.932899 v 0.268864 0.268864 H 2.664035 2.3951708 Z m 3.2519753,0 v -0.268864 h 0.2688642 0.2688641 v 0.268864 0.268864 H 5.9160103 5.6471461 Z m 4.8736949,0 v -0.268864 h 0.273131 0.273132 v 0.268864 0.268864 h -0.273132 -0.273131 z m -2.1659691,-0.539862 0.00225,-0.270998 H 8.6259859 8.89485 l 0.00225,0.270998 0.00225,0.270998 H 8.6259897 8.3526182 Z m -3.7917175,-0.54413 v -0.268864 h 0.2688641 0.2688642 v 0.268864 0.268864 H 4.8320185 4.5631544 Z"
|
|
38
|
+
id="path1" /></svg>
|
|
@@ -0,0 +1,84 @@
|
|
|
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="normalize.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="45.254834"
|
|
28
|
+
inkscape:cx="5.203864"
|
|
29
|
+
inkscape:cy="6.9053397"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
id="g7"
|
|
38
|
+
transform="matrix(0.0493164,0,0,0.05618714,0.69457319,-2.0927243)">
|
|
39
|
+
<path
|
|
40
|
+
d="M 114.18594,254.30659 H 89.508523 c -4.26839,0 -7.7275,-3.45911 -7.7275,-7.7275 V 141.49633 c 0,-4.26839 3.45911,-7.7275 7.7275,-7.7275 h 24.677417 c 4.26839,0 7.7275,3.45911 7.7275,7.7275 v 105.08276 c 0,4.26839 -3.45911,7.7275 -7.7275,7.7275 z"
|
|
41
|
+
style="fill:#ffc36e;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
42
|
+
stroke-linecap="round"
|
|
43
|
+
id="path1-8" />
|
|
44
|
+
<path
|
|
45
|
+
d="m 166.20466,254.30659 h -24.67742 c -4.26839,0 -7.7275,-4.56509 -7.7275,-10.1982 V 79.55017 c 0,-5.633117 3.45911,-10.198204 7.7275,-10.198204 h 24.67742 c 4.26839,0 7.7275,4.565087 7.7275,10.198204 v 164.55822 c 0,5.63311 -3.46192,10.1982 -7.7275,10.1982 z"
|
|
46
|
+
style="fill:#a5d76e;fill-rule:nonzero;stroke:none;stroke-width:3.22811;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
47
|
+
stroke-linecap="round"
|
|
48
|
+
id="path2" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 62.170033,254.30659 h -24.67742 c -4.26839,0 -7.7275,-3.45911 -7.7275,-7.7275 v -54.61797 c 0,-4.26839 3.45911,-7.7275 7.7275,-7.7275 h 24.67742 c 4.26839,0 7.7275,3.45911 7.7275,7.7275 v 54.61797 c 0,4.26839 -3.46192,7.7275 -7.7275,7.7275 z"
|
|
51
|
+
style="fill:#d2555a;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
52
|
+
stroke-linecap="round"
|
|
53
|
+
id="path3" />
|
|
54
|
+
<path
|
|
55
|
+
d="m 218.22057,254.30659 h -24.67742 c -4.26839,0 -7.7275,-2.74667 -7.7275,-6.13595 V 121.16998 c 0,-3.38928 3.45911,-6.13595 7.7275,-6.13595 h 24.67742 c 4.26839,0 7.7275,2.74667 7.7275,6.13595 v 127.00066 c 0,3.38928 -3.45911,6.13595 -7.7275,6.13595 z"
|
|
56
|
+
style="fill:#78d2be;fill-rule:nonzero;stroke:none;stroke-width:2.50396;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
57
|
+
stroke-linecap="round"
|
|
58
|
+
id="path4" />
|
|
59
|
+
</g>
|
|
60
|
+
<rect
|
|
61
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.549989"
|
|
62
|
+
id="rect28089-7"
|
|
63
|
+
width="0.56253999"
|
|
64
|
+
height="11.990077"
|
|
65
|
+
x="2.5139291"
|
|
66
|
+
y="-12.995039"
|
|
67
|
+
transform="rotate(90)" />
|
|
68
|
+
<rect
|
|
69
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.549989"
|
|
70
|
+
id="rect28089-7-6"
|
|
71
|
+
width="0.56253999"
|
|
72
|
+
height="11.990077"
|
|
73
|
+
x="10.932852"
|
|
74
|
+
y="-12.995039"
|
|
75
|
+
transform="rotate(90)" />
|
|
76
|
+
<path
|
|
77
|
+
d="M 3.4500959,9.1288487 H 2.9066629 V 4.7819556 h 0.543433 c 0.07356,0 0.137288,-0.026885 0.191006,-0.080655 0.05369,-0.053769 0.0806,-0.1174398 0.0806,-0.1910092 0,-0.073569 -0.02675,-0.137239 -0.0807,-0.1910612 L 2.5543439,3.2325197 c -0.05372,-0.05377 -0.11744,-0.080655 -0.191013,-0.080655 -0.07356,0 -0.137237,0.026885 -0.191006,0.080655 L 1.085612,4.3192298 c -0.05376,0.05382 -0.08065,0.1174918 -0.08065,0.1910612 0,0.073569 0.02688,0.137239 0.08065,0.1910092 0.05382,0.053769 0.117496,0.080655 0.191062,0.080655 H 1.820057 V 9.1288483 H 1.276725 c -0.07362,0 -0.137288,0.026882 -0.191057,0.080603 -0.05376,0.053816 -0.08066,0.1175444 -0.08066,0.191061 0,0.073571 0.02688,0.1372393 0.08066,0.1910611 l 1.0867079,1.0866586 c 0.05375,0.05377 0.11744,0.08066 0.191006,0.08066 0.07357,0 0.137294,-0.02688 0.191013,-0.08066 l 1.086707,-1.0866586 c 0.05369,-0.053816 0.0806,-0.1174918 0.0806,-0.1910611 0,-0.073517 -0.02688,-0.1372385 -0.0806,-0.191061 -0.05369,-0.053771 -0.117389,-0.080603 -0.191006,-0.080603 z"
|
|
78
|
+
id="path1"
|
|
79
|
+
style="fill:#0abc2e;fill-opacity:1;stroke-width:0.633918" />
|
|
80
|
+
<path
|
|
81
|
+
d="M 12.723433,9.1288489 H 12.18 V 4.7819556 h 0.543433 c 0.07356,0 0.137288,-0.026885 0.191006,-0.080655 0.05369,-0.053769 0.0806,-0.1174398 0.0806,-0.1910092 0,-0.073569 -0.02675,-0.137239 -0.0807,-0.1910612 L 11.827681,3.2325197 c -0.05372,-0.05377 -0.11744,-0.080655 -0.191013,-0.080655 -0.07356,0 -0.137237,0.026885 -0.191006,0.080655 l -1.086713,1.0867101 c -0.05376,0.05382 -0.08065,0.1174918 -0.08065,0.1910612 0,0.073569 0.02688,0.137239 0.08065,0.1910092 0.05382,0.053769 0.117496,0.080655 0.191062,0.080655 h 0.543383 v 4.3468927 h -0.543332 c -0.07362,0 -0.137288,0.02688 -0.191057,0.0806 -0.05376,0.05382 -0.08066,0.117545 -0.08066,0.191061 0,0.07357 0.02688,0.13724 0.08066,0.191061 l 1.086708,1.0866591 c 0.05375,0.05377 0.11744,0.08066 0.191006,0.08066 0.07357,0 0.137294,-0.02688 0.191013,-0.08066 l 1.086707,-1.0866591 c 0.05369,-0.05382 0.0806,-0.117491 0.0806,-0.191061 0,-0.07352 -0.02688,-0.137238 -0.0806,-0.191061 -0.05369,-0.05377 -0.117389,-0.0806 -0.191006,-0.080599 z"
|
|
82
|
+
id="path1-6"
|
|
83
|
+
style="fill:#0abc2e;fill-opacity:1;stroke-width:0.633918" />
|
|
84
|
+
</svg>
|
|
@@ -0,0 +1,131 @@
|
|
|
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="offset_correction.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="45.254834"
|
|
28
|
+
inkscape:cx="6.7506601"
|
|
29
|
+
inkscape:cy="7.7008348"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
id="g7"
|
|
38
|
+
transform="matrix(0.0493164,0,0,0.05618714,0.69457319,-2.0927243)">
|
|
39
|
+
<path
|
|
40
|
+
d="M 114.18594,254.30659 H 89.508523 c -4.26839,0 -7.7275,-3.45911 -7.7275,-7.7275 V 141.49633 c 0,-4.26839 3.45911,-7.7275 7.7275,-7.7275 h 24.677417 c 4.26839,0 7.7275,3.45911 7.7275,7.7275 v 105.08276 c 0,4.26839 -3.45911,7.7275 -7.7275,7.7275 z"
|
|
41
|
+
style="fill:#ffc36e;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
42
|
+
stroke-linecap="round"
|
|
43
|
+
id="path1-8" />
|
|
44
|
+
<path
|
|
45
|
+
d="m 166.20466,254.30659 h -24.67742 c -4.26839,0 -7.7275,-4.56509 -7.7275,-10.1982 V 79.55017 c 0,-5.633117 3.45911,-10.198204 7.7275,-10.198204 h 24.67742 c 4.26839,0 7.7275,4.565087 7.7275,10.198204 v 164.55822 c 0,5.63311 -3.46192,10.1982 -7.7275,10.1982 z"
|
|
46
|
+
style="fill:#a5d76e;fill-rule:nonzero;stroke:none;stroke-width:3.22811;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
47
|
+
stroke-linecap="round"
|
|
48
|
+
id="path2" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 62.170033,254.30659 h -24.67742 c -4.26839,0 -7.7275,-3.45911 -7.7275,-7.7275 v -54.61797 c 0,-4.26839 3.45911,-7.7275 7.7275,-7.7275 h 24.67742 c 4.26839,0 7.7275,3.45911 7.7275,7.7275 v 54.61797 c 0,4.26839 -3.46192,7.7275 -7.7275,7.7275 z"
|
|
51
|
+
style="fill:#d2555a;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
52
|
+
stroke-linecap="round"
|
|
53
|
+
id="path3" />
|
|
54
|
+
<path
|
|
55
|
+
d="m 218.22057,254.30659 h -24.67742 c -4.26839,0 -7.7275,-2.74667 -7.7275,-6.13595 V 121.16998 c 0,-3.38928 3.45911,-6.13595 7.7275,-6.13595 h 24.67742 c 4.26839,0 7.7275,2.74667 7.7275,6.13595 v 127.00066 c 0,3.38928 -3.45911,6.13595 -7.7275,6.13595 z"
|
|
56
|
+
style="fill:#78d2be;fill-rule:nonzero;stroke:none;stroke-width:2.50396;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
57
|
+
stroke-linecap="round"
|
|
58
|
+
id="path4" />
|
|
59
|
+
</g>
|
|
60
|
+
<rect
|
|
61
|
+
style="fill:#b3b3b3;fill-opacity:0.81724101;stroke-width:1.33261"
|
|
62
|
+
id="rect28089-7-6-8"
|
|
63
|
+
width="3.3025787"
|
|
64
|
+
height="11.990077"
|
|
65
|
+
x="8.821207"
|
|
66
|
+
y="-12.995039"
|
|
67
|
+
transform="rotate(90)" />
|
|
68
|
+
<rect
|
|
69
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.547874"
|
|
70
|
+
id="rect28089"
|
|
71
|
+
width="0.53186357"
|
|
72
|
+
height="12.584304"
|
|
73
|
+
x="6.7340684"
|
|
74
|
+
y="0.70784807" />
|
|
75
|
+
<rect
|
|
76
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.54642"
|
|
77
|
+
id="rect28089-7"
|
|
78
|
+
width="0.53186357"
|
|
79
|
+
height="12.5176"
|
|
80
|
+
x="12.107919"
|
|
81
|
+
y="-13.258801"
|
|
82
|
+
transform="rotate(90)" />
|
|
83
|
+
<rect
|
|
84
|
+
style="fill:#ff0000;fill-opacity:0.817241;stroke-width:0.273432"
|
|
85
|
+
id="rect28089-7-9"
|
|
86
|
+
width="0.45316043"
|
|
87
|
+
height="3.6788645"
|
|
88
|
+
x="5.9177461"
|
|
89
|
+
y="6.8980737"
|
|
90
|
+
transform="matrix(0.91109188,0.41220332,-0.41815071,0.90837767,0,0)" />
|
|
91
|
+
<rect
|
|
92
|
+
style="fill:#ff0000;fill-opacity:0.817241;stroke-width:0.273432"
|
|
93
|
+
id="rect28089-7-9-1"
|
|
94
|
+
width="0.45316043"
|
|
95
|
+
height="3.6788645"
|
|
96
|
+
x="7.7381525"
|
|
97
|
+
y="6.0720105"
|
|
98
|
+
transform="matrix(0.91109188,0.41220332,-0.41815071,0.90837767,0,0)" />
|
|
99
|
+
<rect
|
|
100
|
+
style="fill:#ff0000;fill-opacity:0.817241;stroke-width:0.273432"
|
|
101
|
+
id="rect28089-7-9-0"
|
|
102
|
+
width="0.45316043"
|
|
103
|
+
height="3.6788645"
|
|
104
|
+
x="9.5585575"
|
|
105
|
+
y="5.2459469"
|
|
106
|
+
transform="matrix(0.91109188,0.41220332,-0.41815071,0.90837767,0,0)" />
|
|
107
|
+
<rect
|
|
108
|
+
style="fill:#ff0000;fill-opacity:0.817241;stroke-width:0.273432"
|
|
109
|
+
id="rect28089-7-9-6"
|
|
110
|
+
width="0.45316043"
|
|
111
|
+
height="3.6788645"
|
|
112
|
+
x="11.378963"
|
|
113
|
+
y="4.4198837"
|
|
114
|
+
transform="matrix(0.91109188,0.41220332,-0.41815071,0.90837767,0,0)" />
|
|
115
|
+
<rect
|
|
116
|
+
style="fill:#ff0000;fill-opacity:0.817241;stroke-width:0.273432"
|
|
117
|
+
id="rect28089-7-9-8"
|
|
118
|
+
width="0.45316043"
|
|
119
|
+
height="3.6788645"
|
|
120
|
+
x="13.199368"
|
|
121
|
+
y="3.5938206"
|
|
122
|
+
transform="matrix(0.91109188,0.41220332,-0.41815071,0.90837767,0,0)" />
|
|
123
|
+
<rect
|
|
124
|
+
style="fill:#ff0000;fill-opacity:0.817241;stroke-width:0.273432"
|
|
125
|
+
id="rect28089-7-9-7"
|
|
126
|
+
width="0.45316043"
|
|
127
|
+
height="3.6788645"
|
|
128
|
+
x="15.019778"
|
|
129
|
+
y="2.7677574"
|
|
130
|
+
transform="matrix(0.91109188,0.41220332,-0.41815071,0.90837767,0,0)" />
|
|
131
|
+
</svg>
|
|
@@ -0,0 +1,101 @@
|
|
|
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="interpolation.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="45.254834"
|
|
28
|
+
inkscape:cx="6.7064659"
|
|
29
|
+
inkscape:cy="6.9053397"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:none;fill-opacity:0.817241;stroke:#0000ff;stroke-width:0.491568;stroke-opacity:1"
|
|
38
|
+
d="M 1.5357954,12.746841 C 4.8297261,12.703705 6.368815,12.138784 7.0563137,11.270878 7.9782076,10.10707 7.7861718,9.9142696 8.2539104,8.4975778 8.7771934,6.591291 9.1289541,5.3569567 9.1289541,5.3569567 L 10.385883,2.2194019 12.056532,1.2338314"
|
|
39
|
+
id="path32265-5"
|
|
40
|
+
sodipodi:nodetypes="cszccc" />
|
|
41
|
+
<circle
|
|
42
|
+
cx="10.562016"
|
|
43
|
+
cy="2.1995862"
|
|
44
|
+
r="0.50227541"
|
|
45
|
+
id="circle20-2-2"
|
|
46
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
47
|
+
<circle
|
|
48
|
+
cx="9.1082544"
|
|
49
|
+
cy="5.4269667"
|
|
50
|
+
r="0.50227541"
|
|
51
|
+
id="circle22-3-5"
|
|
52
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
53
|
+
<circle
|
|
54
|
+
cx="7.6544943"
|
|
55
|
+
cy="10.407939"
|
|
56
|
+
r="0.50227541"
|
|
57
|
+
id="circle24-6-1"
|
|
58
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
59
|
+
<circle
|
|
60
|
+
cx="6.2007337"
|
|
61
|
+
cy="12.000946"
|
|
62
|
+
r="0.61591756"
|
|
63
|
+
id="circle26-0-3"
|
|
64
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
65
|
+
<circle
|
|
66
|
+
cx="8.4092112"
|
|
67
|
+
cy="7.829483"
|
|
68
|
+
r="0.61591756"
|
|
69
|
+
id="circle26-0-3-8"
|
|
70
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
71
|
+
<circle
|
|
72
|
+
cx="9.7683954"
|
|
73
|
+
cy="3.6414444"
|
|
74
|
+
r="0.61591756"
|
|
75
|
+
id="circle26-0-3-5"
|
|
76
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
77
|
+
<circle
|
|
78
|
+
cx="4.7469735"
|
|
79
|
+
cy="12.482862"
|
|
80
|
+
r="0.50227541"
|
|
81
|
+
id="circle28-1-9"
|
|
82
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
83
|
+
<circle
|
|
84
|
+
cx="1.8394529"
|
|
85
|
+
cy="12.732261"
|
|
86
|
+
r="0.50227541"
|
|
87
|
+
id="circle28-1-1-0"
|
|
88
|
+
style="fill:#acacff;fill-opacity:1;stroke:#0000ff;stroke-width:0.167425" />
|
|
89
|
+
<circle
|
|
90
|
+
cx="3.2932136"
|
|
91
|
+
cy="12.69363"
|
|
92
|
+
r="0.61591756"
|
|
93
|
+
id="circle28-1-31-5"
|
|
94
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
95
|
+
<circle
|
|
96
|
+
cx="11.917444"
|
|
97
|
+
cy="1.1830367"
|
|
98
|
+
r="0.61591756"
|
|
99
|
+
id="circle26-0-3-7"
|
|
100
|
+
style="fill:#ff8080;fill-opacity:1;stroke:#d40000;stroke-width:0.205306" />
|
|
101
|
+
</svg>
|