datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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.0.dist-info/METADATA +121 -0
- datalab_platform-1.0.0.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.0.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,769 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg9"
|
|
9
|
+
sodipodi:docname="distribute_on_grid.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"><sodipodi:namedview
|
|
15
|
+
id="namedview9"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="3.1484375"
|
|
24
|
+
inkscape:cx="128"
|
|
25
|
+
inkscape:cy="127.84119"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg9" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
</defs>
|
|
46
|
+
<path
|
|
47
|
+
d="M 78.236036,78.365176 H 15.25264 V 15.38178 H 78.236036 Z M 20.251521,73.366296 H 73.237156 V 20.380661 H 20.251521 Z"
|
|
48
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
id="path1" /><path
|
|
51
|
+
d="M 159.34954,78.365176 H 96.363646 V 15.38178 h 62.985894 z m -57.98701,-4.99888 h 52.98813 V 20.380661 h -52.98813 z"
|
|
52
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
53
|
+
stroke-linecap="round"
|
|
54
|
+
id="path2" /><path
|
|
55
|
+
d="m 240.33141,78.365176 h -62.9834 V 15.38178 h 62.9834 z m -57.98452,-4.99888 h 52.98564 V 20.380661 h -52.98564 z"
|
|
56
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
57
|
+
stroke-linecap="round"
|
|
58
|
+
id="path3" /><path
|
|
59
|
+
d="M 78.365176,159.34954 H 15.38178 V 96.363646 H 78.365176 Z M 20.380661,154.35066 H 73.366296 V 101.36253 H 20.380661 Z"
|
|
60
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
61
|
+
stroke-linecap="round"
|
|
62
|
+
id="path4" /><path
|
|
63
|
+
d="M 159.34954,159.34954 H 96.363646 V 96.363646 h 62.985894 z m -57.98701,-4.99888 h 52.98813 v -52.98813 h -52.98813 z"
|
|
64
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
65
|
+
stroke-linecap="round"
|
|
66
|
+
id="path5" /><path
|
|
67
|
+
d="m 240.33141,159.34954 h -62.9834 V 96.363646 h 62.9834 z m -57.98452,-4.99888 h 52.98564 v -52.98813 h -52.98564 z"
|
|
68
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
69
|
+
stroke-linecap="round"
|
|
70
|
+
id="path6" /><path
|
|
71
|
+
d="M 78.365176,240.33141 H 15.38178 v -62.9834 H 78.365176 Z M 20.380661,235.33253 H 73.366296 V 182.34689 H 20.380661 Z"
|
|
72
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
73
|
+
stroke-linecap="round"
|
|
74
|
+
id="path7" /><path
|
|
75
|
+
d="M 159.34954,240.33141 H 96.363646 v -62.9834 h 62.985894 z m -57.98701,-4.99888 h 52.98813 v -52.98564 h -52.98813 z"
|
|
76
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
77
|
+
stroke-linecap="round"
|
|
78
|
+
id="path8" /><path
|
|
79
|
+
d="m 240.33141,240.33141 h -62.9834 v -62.9834 h 62.9834 z m -57.98452,-4.99888 h 52.98564 v -52.98564 h -52.98564 z"
|
|
80
|
+
style="fill:#666666;fill-rule:nonzero;stroke:none;stroke-width:2.49944;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
81
|
+
stroke-linecap="round"
|
|
82
|
+
id="path9" />
|
|
83
|
+
<g
|
|
84
|
+
id="g22811"
|
|
85
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,0.49122838,0.6203701)"><rect
|
|
86
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
87
|
+
id="rect10749"
|
|
88
|
+
width="2"
|
|
89
|
+
height="2"
|
|
90
|
+
x="2.5999999"
|
|
91
|
+
y="2.5999999" /><rect
|
|
92
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
93
|
+
id="rect10749-7"
|
|
94
|
+
width="2"
|
|
95
|
+
height="2"
|
|
96
|
+
x="2.5999999"
|
|
97
|
+
y="4.5999999" /><rect
|
|
98
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
99
|
+
id="rect10749-1"
|
|
100
|
+
width="2"
|
|
101
|
+
height="2"
|
|
102
|
+
x="4.5999999"
|
|
103
|
+
y="2.5999999" /><rect
|
|
104
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
105
|
+
id="rect10749-7-5"
|
|
106
|
+
width="2"
|
|
107
|
+
height="2"
|
|
108
|
+
x="4.5999999"
|
|
109
|
+
y="4.5999999" /><rect
|
|
110
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
111
|
+
id="rect10749-8"
|
|
112
|
+
width="2"
|
|
113
|
+
height="2"
|
|
114
|
+
x="6.5999999"
|
|
115
|
+
y="2.5999999" /><rect
|
|
116
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
117
|
+
id="rect10749-7-0"
|
|
118
|
+
width="2"
|
|
119
|
+
height="2"
|
|
120
|
+
x="6.5999999"
|
|
121
|
+
y="4.5999999" /><rect
|
|
122
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
123
|
+
id="rect10749-1-4"
|
|
124
|
+
width="2"
|
|
125
|
+
height="2"
|
|
126
|
+
x="8.6000004"
|
|
127
|
+
y="2.5999999" /><rect
|
|
128
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
129
|
+
id="rect10749-7-5-5"
|
|
130
|
+
width="2"
|
|
131
|
+
height="2"
|
|
132
|
+
x="8.6000004"
|
|
133
|
+
y="4.5999999" /><rect
|
|
134
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
135
|
+
id="rect10749-84"
|
|
136
|
+
width="2"
|
|
137
|
+
height="2"
|
|
138
|
+
x="2.5999999"
|
|
139
|
+
y="6.5999999" /><rect
|
|
140
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
141
|
+
id="rect10749-7-8"
|
|
142
|
+
width="2"
|
|
143
|
+
height="2"
|
|
144
|
+
x="2.5999999"
|
|
145
|
+
y="8.6000004" /><rect
|
|
146
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
147
|
+
id="rect10749-1-1"
|
|
148
|
+
width="2"
|
|
149
|
+
height="2"
|
|
150
|
+
x="4.5999999"
|
|
151
|
+
y="6.5999999" /><rect
|
|
152
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
153
|
+
id="rect10749-7-5-4"
|
|
154
|
+
width="2"
|
|
155
|
+
height="2"
|
|
156
|
+
x="4.5999999"
|
|
157
|
+
y="8.6000004" /><rect
|
|
158
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
159
|
+
id="rect10749-8-8"
|
|
160
|
+
width="2"
|
|
161
|
+
height="2"
|
|
162
|
+
x="6.5999999"
|
|
163
|
+
y="6.5999999" /><rect
|
|
164
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
165
|
+
id="rect10749-7-0-4"
|
|
166
|
+
width="2"
|
|
167
|
+
height="2"
|
|
168
|
+
x="6.5999999"
|
|
169
|
+
y="8.6000004" /><rect
|
|
170
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
171
|
+
id="rect10749-1-4-3"
|
|
172
|
+
width="2"
|
|
173
|
+
height="2"
|
|
174
|
+
x="8.6000004"
|
|
175
|
+
y="6.5999999" /><rect
|
|
176
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
177
|
+
id="rect10749-7-5-5-3"
|
|
178
|
+
width="2"
|
|
179
|
+
height="2"
|
|
180
|
+
x="8.6000004"
|
|
181
|
+
y="8.6000004" /></g><g
|
|
182
|
+
id="g22811-0"
|
|
183
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,81.603483,0.6203701)"><rect
|
|
184
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
185
|
+
id="rect10749-82"
|
|
186
|
+
width="2"
|
|
187
|
+
height="2"
|
|
188
|
+
x="2.5999999"
|
|
189
|
+
y="2.5999999" /><rect
|
|
190
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
191
|
+
id="rect10749-7-51"
|
|
192
|
+
width="2"
|
|
193
|
+
height="2"
|
|
194
|
+
x="2.5999999"
|
|
195
|
+
y="4.5999999" /><rect
|
|
196
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
197
|
+
id="rect10749-1-5"
|
|
198
|
+
width="2"
|
|
199
|
+
height="2"
|
|
200
|
+
x="4.5999999"
|
|
201
|
+
y="2.5999999" /><rect
|
|
202
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
203
|
+
id="rect10749-7-5-50"
|
|
204
|
+
width="2"
|
|
205
|
+
height="2"
|
|
206
|
+
x="4.5999999"
|
|
207
|
+
y="4.5999999" /><rect
|
|
208
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
209
|
+
id="rect10749-8-2"
|
|
210
|
+
width="2"
|
|
211
|
+
height="2"
|
|
212
|
+
x="6.5999999"
|
|
213
|
+
y="2.5999999" /><rect
|
|
214
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
215
|
+
id="rect10749-7-0-7"
|
|
216
|
+
width="2"
|
|
217
|
+
height="2"
|
|
218
|
+
x="6.5999999"
|
|
219
|
+
y="4.5999999" /><rect
|
|
220
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
221
|
+
id="rect10749-1-4-5"
|
|
222
|
+
width="2"
|
|
223
|
+
height="2"
|
|
224
|
+
x="8.6000004"
|
|
225
|
+
y="2.5999999" /><rect
|
|
226
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
227
|
+
id="rect10749-7-5-5-2"
|
|
228
|
+
width="2"
|
|
229
|
+
height="2"
|
|
230
|
+
x="8.6000004"
|
|
231
|
+
y="4.5999999" /><rect
|
|
232
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
233
|
+
id="rect10749-84-8"
|
|
234
|
+
width="2"
|
|
235
|
+
height="2"
|
|
236
|
+
x="2.5999999"
|
|
237
|
+
y="6.5999999" /><rect
|
|
238
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
239
|
+
id="rect10749-7-8-6"
|
|
240
|
+
width="2"
|
|
241
|
+
height="2"
|
|
242
|
+
x="2.5999999"
|
|
243
|
+
y="8.6000004" /><rect
|
|
244
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
245
|
+
id="rect10749-1-1-3"
|
|
246
|
+
width="2"
|
|
247
|
+
height="2"
|
|
248
|
+
x="4.5999999"
|
|
249
|
+
y="6.5999999" /><rect
|
|
250
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
251
|
+
id="rect10749-7-5-4-1"
|
|
252
|
+
width="2"
|
|
253
|
+
height="2"
|
|
254
|
+
x="4.5999999"
|
|
255
|
+
y="8.6000004" /><rect
|
|
256
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
257
|
+
id="rect10749-8-8-9"
|
|
258
|
+
width="2"
|
|
259
|
+
height="2"
|
|
260
|
+
x="6.5999999"
|
|
261
|
+
y="6.5999999" /><rect
|
|
262
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
263
|
+
id="rect10749-7-0-4-2"
|
|
264
|
+
width="2"
|
|
265
|
+
height="2"
|
|
266
|
+
x="6.5999999"
|
|
267
|
+
y="8.6000004" /><rect
|
|
268
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
269
|
+
id="rect10749-1-4-3-1"
|
|
270
|
+
width="2"
|
|
271
|
+
height="2"
|
|
272
|
+
x="8.6000004"
|
|
273
|
+
y="6.5999999" /><rect
|
|
274
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
275
|
+
id="rect10749-7-5-5-3-7"
|
|
276
|
+
width="2"
|
|
277
|
+
height="2"
|
|
278
|
+
x="8.6000004"
|
|
279
|
+
y="8.6000004" /></g><g
|
|
280
|
+
id="g22811-3"
|
|
281
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,162.5866,0.6203701)"><rect
|
|
282
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
283
|
+
id="rect10749-11"
|
|
284
|
+
width="2"
|
|
285
|
+
height="2"
|
|
286
|
+
x="2.5999999"
|
|
287
|
+
y="2.5999999" /><rect
|
|
288
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
289
|
+
id="rect10749-7-07"
|
|
290
|
+
width="2"
|
|
291
|
+
height="2"
|
|
292
|
+
x="2.5999999"
|
|
293
|
+
y="4.5999999" /><rect
|
|
294
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
295
|
+
id="rect10749-1-57"
|
|
296
|
+
width="2"
|
|
297
|
+
height="2"
|
|
298
|
+
x="4.5999999"
|
|
299
|
+
y="2.5999999" /><rect
|
|
300
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
301
|
+
id="rect10749-7-5-44"
|
|
302
|
+
width="2"
|
|
303
|
+
height="2"
|
|
304
|
+
x="4.5999999"
|
|
305
|
+
y="4.5999999" /><rect
|
|
306
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
307
|
+
id="rect10749-8-9"
|
|
308
|
+
width="2"
|
|
309
|
+
height="2"
|
|
310
|
+
x="6.5999999"
|
|
311
|
+
y="2.5999999" /><rect
|
|
312
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
313
|
+
id="rect10749-7-0-3"
|
|
314
|
+
width="2"
|
|
315
|
+
height="2"
|
|
316
|
+
x="6.5999999"
|
|
317
|
+
y="4.5999999" /><rect
|
|
318
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
319
|
+
id="rect10749-1-4-0"
|
|
320
|
+
width="2"
|
|
321
|
+
height="2"
|
|
322
|
+
x="8.6000004"
|
|
323
|
+
y="2.5999999" /><rect
|
|
324
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
325
|
+
id="rect10749-7-5-5-5"
|
|
326
|
+
width="2"
|
|
327
|
+
height="2"
|
|
328
|
+
x="8.6000004"
|
|
329
|
+
y="4.5999999" /><rect
|
|
330
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
331
|
+
id="rect10749-84-4"
|
|
332
|
+
width="2"
|
|
333
|
+
height="2"
|
|
334
|
+
x="2.5999999"
|
|
335
|
+
y="6.5999999" /><rect
|
|
336
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
337
|
+
id="rect10749-7-8-3"
|
|
338
|
+
width="2"
|
|
339
|
+
height="2"
|
|
340
|
+
x="2.5999999"
|
|
341
|
+
y="8.6000004" /><rect
|
|
342
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
343
|
+
id="rect10749-1-1-0"
|
|
344
|
+
width="2"
|
|
345
|
+
height="2"
|
|
346
|
+
x="4.5999999"
|
|
347
|
+
y="6.5999999" /><rect
|
|
348
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
349
|
+
id="rect10749-7-5-4-0"
|
|
350
|
+
width="2"
|
|
351
|
+
height="2"
|
|
352
|
+
x="4.5999999"
|
|
353
|
+
y="8.6000004" /><rect
|
|
354
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
355
|
+
id="rect10749-8-8-7"
|
|
356
|
+
width="2"
|
|
357
|
+
height="2"
|
|
358
|
+
x="6.5999999"
|
|
359
|
+
y="6.5999999" /><rect
|
|
360
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
361
|
+
id="rect10749-7-0-4-27"
|
|
362
|
+
width="2"
|
|
363
|
+
height="2"
|
|
364
|
+
x="6.5999999"
|
|
365
|
+
y="8.6000004" /><rect
|
|
366
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
367
|
+
id="rect10749-1-4-3-4"
|
|
368
|
+
width="2"
|
|
369
|
+
height="2"
|
|
370
|
+
x="8.6000004"
|
|
371
|
+
y="6.5999999" /><rect
|
|
372
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
373
|
+
id="rect10749-7-5-5-3-77"
|
|
374
|
+
width="2"
|
|
375
|
+
height="2"
|
|
376
|
+
x="8.6000004"
|
|
377
|
+
y="8.6000004" /></g><g
|
|
378
|
+
id="g22811-7"
|
|
379
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,0.62036838,81.603485)"><rect
|
|
380
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
381
|
+
id="rect10749-2"
|
|
382
|
+
width="2"
|
|
383
|
+
height="2"
|
|
384
|
+
x="2.5999999"
|
|
385
|
+
y="2.5999999" /><rect
|
|
386
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
387
|
+
id="rect10749-7-55"
|
|
388
|
+
width="2"
|
|
389
|
+
height="2"
|
|
390
|
+
x="2.5999999"
|
|
391
|
+
y="4.5999999" /><rect
|
|
392
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
393
|
+
id="rect10749-1-41"
|
|
394
|
+
width="2"
|
|
395
|
+
height="2"
|
|
396
|
+
x="4.5999999"
|
|
397
|
+
y="2.5999999" /><rect
|
|
398
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
399
|
+
id="rect10749-7-5-6"
|
|
400
|
+
width="2"
|
|
401
|
+
height="2"
|
|
402
|
+
x="4.5999999"
|
|
403
|
+
y="4.5999999" /><rect
|
|
404
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
405
|
+
id="rect10749-8-3"
|
|
406
|
+
width="2"
|
|
407
|
+
height="2"
|
|
408
|
+
x="6.5999999"
|
|
409
|
+
y="2.5999999" /><rect
|
|
410
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
411
|
+
id="rect10749-7-0-72"
|
|
412
|
+
width="2"
|
|
413
|
+
height="2"
|
|
414
|
+
x="6.5999999"
|
|
415
|
+
y="4.5999999" /><rect
|
|
416
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
417
|
+
id="rect10749-1-4-8"
|
|
418
|
+
width="2"
|
|
419
|
+
height="2"
|
|
420
|
+
x="8.6000004"
|
|
421
|
+
y="2.5999999" /><rect
|
|
422
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
423
|
+
id="rect10749-7-5-5-7"
|
|
424
|
+
width="2"
|
|
425
|
+
height="2"
|
|
426
|
+
x="8.6000004"
|
|
427
|
+
y="4.5999999" /><rect
|
|
428
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
429
|
+
id="rect10749-84-0"
|
|
430
|
+
width="2"
|
|
431
|
+
height="2"
|
|
432
|
+
x="2.5999999"
|
|
433
|
+
y="6.5999999" /><rect
|
|
434
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
435
|
+
id="rect10749-7-8-0"
|
|
436
|
+
width="2"
|
|
437
|
+
height="2"
|
|
438
|
+
x="2.5999999"
|
|
439
|
+
y="8.6000004" /><rect
|
|
440
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
441
|
+
id="rect10749-1-1-6"
|
|
442
|
+
width="2"
|
|
443
|
+
height="2"
|
|
444
|
+
x="4.5999999"
|
|
445
|
+
y="6.5999999" /><rect
|
|
446
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
447
|
+
id="rect10749-7-5-4-3"
|
|
448
|
+
width="2"
|
|
449
|
+
height="2"
|
|
450
|
+
x="4.5999999"
|
|
451
|
+
y="8.6000004" /><rect
|
|
452
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
453
|
+
id="rect10749-8-8-3"
|
|
454
|
+
width="2"
|
|
455
|
+
height="2"
|
|
456
|
+
x="6.5999999"
|
|
457
|
+
y="6.5999999" /><rect
|
|
458
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
459
|
+
id="rect10749-7-0-4-8"
|
|
460
|
+
width="2"
|
|
461
|
+
height="2"
|
|
462
|
+
x="6.5999999"
|
|
463
|
+
y="8.6000004" /><rect
|
|
464
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
465
|
+
id="rect10749-1-4-3-8"
|
|
466
|
+
width="2"
|
|
467
|
+
height="2"
|
|
468
|
+
x="8.6000004"
|
|
469
|
+
y="6.5999999" /><rect
|
|
470
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
471
|
+
id="rect10749-7-5-5-3-3"
|
|
472
|
+
width="2"
|
|
473
|
+
height="2"
|
|
474
|
+
x="8.6000004"
|
|
475
|
+
y="8.6000004" /></g><g
|
|
476
|
+
id="g22811-1"
|
|
477
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,81.603483,81.603485)"><rect
|
|
478
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
479
|
+
id="rect10749-6"
|
|
480
|
+
width="2"
|
|
481
|
+
height="2"
|
|
482
|
+
x="2.5999999"
|
|
483
|
+
y="2.5999999" /><rect
|
|
484
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
485
|
+
id="rect10749-7-4"
|
|
486
|
+
width="2"
|
|
487
|
+
height="2"
|
|
488
|
+
x="2.5999999"
|
|
489
|
+
y="4.5999999" /><rect
|
|
490
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
491
|
+
id="rect10749-1-3"
|
|
492
|
+
width="2"
|
|
493
|
+
height="2"
|
|
494
|
+
x="4.5999999"
|
|
495
|
+
y="2.5999999" /><rect
|
|
496
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
497
|
+
id="rect10749-7-5-48"
|
|
498
|
+
width="2"
|
|
499
|
+
height="2"
|
|
500
|
+
x="4.5999999"
|
|
501
|
+
y="4.5999999" /><rect
|
|
502
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
503
|
+
id="rect10749-8-6"
|
|
504
|
+
width="2"
|
|
505
|
+
height="2"
|
|
506
|
+
x="6.5999999"
|
|
507
|
+
y="2.5999999" /><rect
|
|
508
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
509
|
+
id="rect10749-7-0-31"
|
|
510
|
+
width="2"
|
|
511
|
+
height="2"
|
|
512
|
+
x="6.5999999"
|
|
513
|
+
y="4.5999999" /><rect
|
|
514
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
515
|
+
id="rect10749-1-4-05"
|
|
516
|
+
width="2"
|
|
517
|
+
height="2"
|
|
518
|
+
x="8.6000004"
|
|
519
|
+
y="2.5999999" /><rect
|
|
520
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
521
|
+
id="rect10749-7-5-5-33"
|
|
522
|
+
width="2"
|
|
523
|
+
height="2"
|
|
524
|
+
x="8.6000004"
|
|
525
|
+
y="4.5999999" /><rect
|
|
526
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
527
|
+
id="rect10749-84-1"
|
|
528
|
+
width="2"
|
|
529
|
+
height="2"
|
|
530
|
+
x="2.5999999"
|
|
531
|
+
y="6.5999999" /><rect
|
|
532
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
533
|
+
id="rect10749-7-8-7"
|
|
534
|
+
width="2"
|
|
535
|
+
height="2"
|
|
536
|
+
x="2.5999999"
|
|
537
|
+
y="8.6000004" /><rect
|
|
538
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
539
|
+
id="rect10749-1-1-05"
|
|
540
|
+
width="2"
|
|
541
|
+
height="2"
|
|
542
|
+
x="4.5999999"
|
|
543
|
+
y="6.5999999" /><rect
|
|
544
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
545
|
+
id="rect10749-7-5-4-5"
|
|
546
|
+
width="2"
|
|
547
|
+
height="2"
|
|
548
|
+
x="4.5999999"
|
|
549
|
+
y="8.6000004" /><rect
|
|
550
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
551
|
+
id="rect10749-8-8-78"
|
|
552
|
+
width="2"
|
|
553
|
+
height="2"
|
|
554
|
+
x="6.5999999"
|
|
555
|
+
y="6.5999999" /><rect
|
|
556
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
557
|
+
id="rect10749-7-0-4-5"
|
|
558
|
+
width="2"
|
|
559
|
+
height="2"
|
|
560
|
+
x="6.5999999"
|
|
561
|
+
y="8.6000004" /><rect
|
|
562
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
563
|
+
id="rect10749-1-4-3-9"
|
|
564
|
+
width="2"
|
|
565
|
+
height="2"
|
|
566
|
+
x="8.6000004"
|
|
567
|
+
y="6.5999999" /><rect
|
|
568
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
569
|
+
id="rect10749-7-5-5-3-5"
|
|
570
|
+
width="2"
|
|
571
|
+
height="2"
|
|
572
|
+
x="8.6000004"
|
|
573
|
+
y="8.6000004" /></g><g
|
|
574
|
+
id="g22811-4"
|
|
575
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,162.5866,81.603485)"><rect
|
|
576
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
577
|
+
id="rect10749-25"
|
|
578
|
+
width="2"
|
|
579
|
+
height="2"
|
|
580
|
+
x="2.5999999"
|
|
581
|
+
y="2.5999999" /><rect
|
|
582
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
583
|
+
id="rect10749-7-6"
|
|
584
|
+
width="2"
|
|
585
|
+
height="2"
|
|
586
|
+
x="2.5999999"
|
|
587
|
+
y="4.5999999" /><rect
|
|
588
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
589
|
+
id="rect10749-1-8"
|
|
590
|
+
width="2"
|
|
591
|
+
height="2"
|
|
592
|
+
x="4.5999999"
|
|
593
|
+
y="2.5999999" /><rect
|
|
594
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
595
|
+
id="rect10749-7-5-1"
|
|
596
|
+
width="2"
|
|
597
|
+
height="2"
|
|
598
|
+
x="4.5999999"
|
|
599
|
+
y="4.5999999" /><rect
|
|
600
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
601
|
+
id="rect10749-8-5"
|
|
602
|
+
width="2"
|
|
603
|
+
height="2"
|
|
604
|
+
x="6.5999999"
|
|
605
|
+
y="2.5999999" /><rect
|
|
606
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
607
|
+
id="rect10749-7-0-8"
|
|
608
|
+
width="2"
|
|
609
|
+
height="2"
|
|
610
|
+
x="6.5999999"
|
|
611
|
+
y="4.5999999" /><rect
|
|
612
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
613
|
+
id="rect10749-1-4-9"
|
|
614
|
+
width="2"
|
|
615
|
+
height="2"
|
|
616
|
+
x="8.6000004"
|
|
617
|
+
y="2.5999999" /><rect
|
|
618
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
619
|
+
id="rect10749-7-5-5-9"
|
|
620
|
+
width="2"
|
|
621
|
+
height="2"
|
|
622
|
+
x="8.6000004"
|
|
623
|
+
y="4.5999999" /><rect
|
|
624
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
625
|
+
id="rect10749-84-3"
|
|
626
|
+
width="2"
|
|
627
|
+
height="2"
|
|
628
|
+
x="2.5999999"
|
|
629
|
+
y="6.5999999" /><rect
|
|
630
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
631
|
+
id="rect10749-7-8-8"
|
|
632
|
+
width="2"
|
|
633
|
+
height="2"
|
|
634
|
+
x="2.5999999"
|
|
635
|
+
y="8.6000004" /><rect
|
|
636
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
637
|
+
id="rect10749-1-1-8"
|
|
638
|
+
width="2"
|
|
639
|
+
height="2"
|
|
640
|
+
x="4.5999999"
|
|
641
|
+
y="6.5999999" /><rect
|
|
642
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
643
|
+
id="rect10749-7-5-4-4"
|
|
644
|
+
width="2"
|
|
645
|
+
height="2"
|
|
646
|
+
x="4.5999999"
|
|
647
|
+
y="8.6000004" /><rect
|
|
648
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
649
|
+
id="rect10749-8-8-5"
|
|
650
|
+
width="2"
|
|
651
|
+
height="2"
|
|
652
|
+
x="6.5999999"
|
|
653
|
+
y="6.5999999" /><rect
|
|
654
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
655
|
+
id="rect10749-7-0-4-4"
|
|
656
|
+
width="2"
|
|
657
|
+
height="2"
|
|
658
|
+
x="6.5999999"
|
|
659
|
+
y="8.6000004" /><rect
|
|
660
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
661
|
+
id="rect10749-1-4-3-7"
|
|
662
|
+
width="2"
|
|
663
|
+
height="2"
|
|
664
|
+
x="8.6000004"
|
|
665
|
+
y="6.5999999" /><rect
|
|
666
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
667
|
+
id="rect10749-7-5-5-3-79"
|
|
668
|
+
width="2"
|
|
669
|
+
height="2"
|
|
670
|
+
x="8.6000004"
|
|
671
|
+
y="8.6000004" /></g><g
|
|
672
|
+
id="g22811-6"
|
|
673
|
+
transform="matrix(7.0000233,0,0.00802346,7.0080465,0.62036838,162.5866)"><rect
|
|
674
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
675
|
+
id="rect10749-5"
|
|
676
|
+
width="2"
|
|
677
|
+
height="2"
|
|
678
|
+
x="2.5999999"
|
|
679
|
+
y="2.5999999" /><rect
|
|
680
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
681
|
+
id="rect10749-7-9"
|
|
682
|
+
width="2"
|
|
683
|
+
height="2"
|
|
684
|
+
x="2.5999999"
|
|
685
|
+
y="4.5999999" /><rect
|
|
686
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
687
|
+
id="rect10749-1-7"
|
|
688
|
+
width="2"
|
|
689
|
+
height="2"
|
|
690
|
+
x="4.5999999"
|
|
691
|
+
y="2.5999999" /><rect
|
|
692
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
693
|
+
id="rect10749-7-5-2"
|
|
694
|
+
width="2"
|
|
695
|
+
height="2"
|
|
696
|
+
x="4.5999999"
|
|
697
|
+
y="4.5999999" /><rect
|
|
698
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
699
|
+
id="rect10749-8-68"
|
|
700
|
+
width="2"
|
|
701
|
+
height="2"
|
|
702
|
+
x="6.5999999"
|
|
703
|
+
y="2.5999999" /><rect
|
|
704
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
705
|
+
id="rect10749-7-0-5"
|
|
706
|
+
width="2"
|
|
707
|
+
height="2"
|
|
708
|
+
x="6.5999999"
|
|
709
|
+
y="4.5999999" /><rect
|
|
710
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
711
|
+
id="rect10749-1-4-2"
|
|
712
|
+
width="2"
|
|
713
|
+
height="2"
|
|
714
|
+
x="8.6000004"
|
|
715
|
+
y="2.5999999" /><rect
|
|
716
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
717
|
+
id="rect10749-7-5-5-76"
|
|
718
|
+
width="2"
|
|
719
|
+
height="2"
|
|
720
|
+
x="8.6000004"
|
|
721
|
+
y="4.5999999" /><rect
|
|
722
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
723
|
+
id="rect10749-84-2"
|
|
724
|
+
width="2"
|
|
725
|
+
height="2"
|
|
726
|
+
x="2.5999999"
|
|
727
|
+
y="6.5999999" /><rect
|
|
728
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
729
|
+
id="rect10749-7-8-2"
|
|
730
|
+
width="2"
|
|
731
|
+
height="2"
|
|
732
|
+
x="2.5999999"
|
|
733
|
+
y="8.6000004" /><rect
|
|
734
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
735
|
+
id="rect10749-1-1-66"
|
|
736
|
+
width="2"
|
|
737
|
+
height="2"
|
|
738
|
+
x="4.5999999"
|
|
739
|
+
y="6.5999999" /><rect
|
|
740
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
741
|
+
id="rect10749-7-5-4-9"
|
|
742
|
+
width="2"
|
|
743
|
+
height="2"
|
|
744
|
+
x="4.5999999"
|
|
745
|
+
y="8.6000004" /><rect
|
|
746
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
747
|
+
id="rect10749-8-8-99"
|
|
748
|
+
width="2"
|
|
749
|
+
height="2"
|
|
750
|
+
x="6.5999999"
|
|
751
|
+
y="6.5999999" /><rect
|
|
752
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
753
|
+
id="rect10749-7-0-4-3"
|
|
754
|
+
width="2"
|
|
755
|
+
height="2"
|
|
756
|
+
x="6.5999999"
|
|
757
|
+
y="8.6000004" /><rect
|
|
758
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
759
|
+
id="rect10749-1-4-3-5"
|
|
760
|
+
width="2"
|
|
761
|
+
height="2"
|
|
762
|
+
x="8.6000004"
|
|
763
|
+
y="6.5999999" /><rect
|
|
764
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
765
|
+
id="rect10749-7-5-5-3-52"
|
|
766
|
+
width="2"
|
|
767
|
+
height="2"
|
|
768
|
+
x="8.6000004"
|
|
769
|
+
y="8.6000004" /></g></svg>
|