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,151 @@
|
|
|
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="svg14"
|
|
9
|
+
sodipodi:docname="filesave_sig.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs18">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01229036,0,0,0.01229036,4.0293076,3.003469)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
</defs>
|
|
39
|
+
<sodipodi:namedview
|
|
40
|
+
id="namedview16"
|
|
41
|
+
pagecolor="#ffffff"
|
|
42
|
+
bordercolor="#666666"
|
|
43
|
+
borderopacity="1.0"
|
|
44
|
+
inkscape:pageshadow="2"
|
|
45
|
+
inkscape:pageopacity="0.0"
|
|
46
|
+
inkscape:pagecheckerboard="0"
|
|
47
|
+
showgrid="false"
|
|
48
|
+
inkscape:zoom="59.428571"
|
|
49
|
+
inkscape:cx="2.7007212"
|
|
50
|
+
inkscape:cy="7.0504808"
|
|
51
|
+
inkscape:window-width="1920"
|
|
52
|
+
inkscape:window-height="1017"
|
|
53
|
+
inkscape:window-x="-8"
|
|
54
|
+
inkscape:window-y="-8"
|
|
55
|
+
inkscape:window-maximized="1"
|
|
56
|
+
inkscape:current-layer="svg14"
|
|
57
|
+
inkscape:showpageshadow="2"
|
|
58
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
59
|
+
<g
|
|
60
|
+
id="g973"
|
|
61
|
+
transform="translate(-2.307e-4,-2.307e-4)">
|
|
62
|
+
<path
|
|
63
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
64
|
+
id="path2" fill="#808080" fill-opacity="1" />
|
|
65
|
+
<path
|
|
66
|
+
fill="#ffffff"
|
|
67
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
68
|
+
id="path4"
|
|
69
|
+
style="stroke-width:0.956731" />
|
|
70
|
+
<path
|
|
71
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
72
|
+
id="path8"
|
|
73
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
74
|
+
<path
|
|
75
|
+
fill="#b0bec5"
|
|
76
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
77
|
+
id="path10"
|
|
78
|
+
style="stroke-width:0.956731" />
|
|
79
|
+
<path
|
|
80
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
81
|
+
id="path12"
|
|
82
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
83
|
+
</g>
|
|
84
|
+
<g
|
|
85
|
+
id="g1230"
|
|
86
|
+
transform="matrix(0.6428317,0,0,0.6428317,2.6407995,-0.0474401)">
|
|
87
|
+
<rect
|
|
88
|
+
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.57074;stroke-opacity:1"
|
|
89
|
+
id="rect10749-5"
|
|
90
|
+
width="7.8104901"
|
|
91
|
+
height="7.8187361"
|
|
92
|
+
x="3.3771245"
|
|
93
|
+
y="3.1234901"
|
|
94
|
+
transform="matrix(1,0,-0.04725952,0.99888264,0,0)" />
|
|
95
|
+
<rect
|
|
96
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.402"
|
|
97
|
+
id="rect28089"
|
|
98
|
+
width="0.47309414"
|
|
99
|
+
height="7.6168156"
|
|
100
|
+
x="6.7652464"
|
|
101
|
+
y="3.1933856" />
|
|
102
|
+
<rect
|
|
103
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.402"
|
|
104
|
+
id="rect28089-7"
|
|
105
|
+
width="0.47309414"
|
|
106
|
+
height="7.6168156"
|
|
107
|
+
x="6.6469727"
|
|
108
|
+
y="-10.810202"
|
|
109
|
+
transform="rotate(90)" />
|
|
110
|
+
<path
|
|
111
|
+
style="fill:none;fill-opacity:0.817241;stroke:#ff0000;stroke-width:0.402;stroke-opacity:1"
|
|
112
|
+
d="m 3.5245514,10.005941 c 0,0.09462 1.5139012,-0.5677129 1.5139012,-0.5677129 L 5.9846409,8.2081834 7.0727574,5.653475 8.2554928,4.4234302 10.195179,3.8557173"
|
|
113
|
+
id="path32265" />
|
|
114
|
+
<circle
|
|
115
|
+
cx="8.2457867"
|
|
116
|
+
cy="4.4486394"
|
|
117
|
+
r="0.58283854"
|
|
118
|
+
id="circle20-2"
|
|
119
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
120
|
+
<circle
|
|
121
|
+
cx="7.0560775"
|
|
122
|
+
cy="5.641458"
|
|
123
|
+
r="0.58283854"
|
|
124
|
+
id="circle22-3"
|
|
125
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
126
|
+
<circle
|
|
127
|
+
cx="6.0082951"
|
|
128
|
+
cy="8.2554922"
|
|
129
|
+
r="0.58283854"
|
|
130
|
+
id="circle24-6"
|
|
131
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
132
|
+
<circle
|
|
133
|
+
cx="5.0078225"
|
|
134
|
+
cy="9.4161282"
|
|
135
|
+
r="0.58283854"
|
|
136
|
+
id="circle26-0"
|
|
137
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
138
|
+
<circle
|
|
139
|
+
cx="3.534256"
|
|
140
|
+
cy="10.017958"
|
|
141
|
+
r="0.58283854"
|
|
142
|
+
id="circle28-1"
|
|
143
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
144
|
+
<circle
|
|
145
|
+
cx="10.147869"
|
|
146
|
+
cy="3.9030263"
|
|
147
|
+
r="0.58283854"
|
|
148
|
+
id="circle28-1-2"
|
|
149
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
150
|
+
</g>
|
|
151
|
+
</svg>
|
|
@@ -0,0 +1,144 @@
|
|
|
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="import.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
|
+
<linearGradient
|
|
18
|
+
id="SVGID_1"
|
|
19
|
+
gradientUnits="userSpaceOnUse"
|
|
20
|
+
x1="21.8064"
|
|
21
|
+
y1="19.2332"
|
|
22
|
+
x2="42.298401"
|
|
23
|
+
y2="19.2332">
|
|
24
|
+
<stop
|
|
25
|
+
offset="0%"
|
|
26
|
+
style="stop-color:rgb(255,255,255);stop-opacity: 1"
|
|
27
|
+
id="stop3" />
|
|
28
|
+
<stop
|
|
29
|
+
offset="100%"
|
|
30
|
+
style="stop-color:rgb(0,0,0);stop-opacity: 1"
|
|
31
|
+
id="stop4" />
|
|
32
|
+
</linearGradient>
|
|
33
|
+
<linearGradient
|
|
34
|
+
id="linearGradient2"
|
|
35
|
+
gradientUnits="userSpaceOnUse"
|
|
36
|
+
x1="21.8064"
|
|
37
|
+
y1="19.2332"
|
|
38
|
+
x2="42.298401"
|
|
39
|
+
y2="19.2332">
|
|
40
|
+
<stop
|
|
41
|
+
offset="0%"
|
|
42
|
+
style="stop-color:rgb(255,255,255);stop-opacity: 1"
|
|
43
|
+
id="stop1" />
|
|
44
|
+
<stop
|
|
45
|
+
offset="100%"
|
|
46
|
+
style="stop-color:rgb(0,0,0);stop-opacity: 1"
|
|
47
|
+
id="stop2" />
|
|
48
|
+
</linearGradient>
|
|
49
|
+
</defs>
|
|
50
|
+
<sodipodi:namedview
|
|
51
|
+
id="namedview14"
|
|
52
|
+
pagecolor="#ffffff"
|
|
53
|
+
bordercolor="#000000"
|
|
54
|
+
borderopacity="0.25"
|
|
55
|
+
inkscape:showpageshadow="2"
|
|
56
|
+
inkscape:pageopacity="0.0"
|
|
57
|
+
inkscape:pagecheckerboard="0"
|
|
58
|
+
inkscape:deskcolor="#d1d1d1"
|
|
59
|
+
showgrid="false"
|
|
60
|
+
inkscape:zoom="42.274884"
|
|
61
|
+
inkscape:cx="4.3406388"
|
|
62
|
+
inkscape:cy="5.4051006"
|
|
63
|
+
inkscape:window-width="1920"
|
|
64
|
+
inkscape:window-height="1009"
|
|
65
|
+
inkscape:window-x="-8"
|
|
66
|
+
inkscape:window-y="-8"
|
|
67
|
+
inkscape:window-maximized="1"
|
|
68
|
+
inkscape:current-layer="svg12" />
|
|
69
|
+
<g
|
|
70
|
+
id="g13"
|
|
71
|
+
transform="matrix(1.0863815,0,0,1.0863815,0.57366188,-1.2632709)">
|
|
72
|
+
<g
|
|
73
|
+
id="g1"
|
|
74
|
+
transform="matrix(1.2910689,0,0,1.2910689,-1.7838797,-2.0730441)"
|
|
75
|
+
style="fill:#999999">
|
|
76
|
+
<path
|
|
77
|
+
d="M 9.7358712,4.5244773 8.295795,3.0844011 C 8.2183191,3.006835 8.1151082,2.9641239 8.0054862,2.9641239 H 4.1615808 c -0.2264679,0 -0.4106763,0.1842084 -0.4106763,0.4106764 v 7.3054877 c 0,0.226468 0.1842084,0.410677 0.4106763,0.410677 h 5.2838913 c 0.2264679,0 0.4107666,-0.184209 0.4107666,-0.410677 V 4.8148764 c 0,-0.1097123 -0.042801,-0.2129232 -0.1203675,-0.2903991 z M 8.2548899,3.4265411 9.3936409,4.5653824 H 8.3702007 c -0.06357,0 -0.1152205,-0.051741 -0.1152205,-0.1153108 V 3.4265411 Z M 9.4454721,10.82007 H 4.1615808 c -0.077115,0 -0.1397816,-0.06267 -0.1397816,-0.139782 V 3.3748003 c 0,-0.077115 0.062667,-0.1397817 0.1397816,-0.1397817 h 3.8225047 v 1.215053 c 0,0.2129232 0.173192,0.3862055 0.3861152,0.3862055 H 9.585344 v 5.8440109 c 0,0.07712 -0.062757,0.139782 -0.1398719,0.139782 z"
|
|
78
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
79
|
+
stroke-linecap="round"
|
|
80
|
+
id="path1" />
|
|
81
|
+
<path
|
|
82
|
+
d="M 8.8978133,5.9727706 H 6.5152945 c -0.074857,0 -0.1354473,-0.06059 -0.1354473,-0.1354473 0,-0.074857 0.06059,-0.1354474 0.1354473,-0.1354474 h 2.3825188 c 0.074767,0 0.1354473,0.06059 0.1354473,0.1354474 0,0.074857 -0.06068,0.1354473 -0.1354473,0.1354473 z"
|
|
83
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
84
|
+
stroke-linecap="round"
|
|
85
|
+
id="path2" />
|
|
86
|
+
<path
|
|
87
|
+
d="M 5.8514219,5.9727706 H 4.7092396 c -0.074857,0 -0.1354473,-0.06059 -0.1354473,-0.1354473 0,-0.074857 0.06059,-0.1354474 0.1354473,-0.1354474 h 1.1421823 c 0.074857,0 0.1354474,0.06059 0.1354474,0.1354474 0,0.074857 -0.06059,0.1354473 -0.1354474,0.1354473 z"
|
|
88
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
89
|
+
stroke-linecap="round"
|
|
90
|
+
id="path3" />
|
|
91
|
+
<path
|
|
92
|
+
d="m 6.5595406,4.8362771 h -1.850301 c -0.074857,0 -0.1354473,-0.06059 -0.1354473,-0.1354473 0,-0.074857 0.06059,-0.1354474 0.1354473,-0.1354474 h 1.8503913 c 0.074857,0 0.1354474,0.06059 0.1354474,0.1354474 0,0.074857 -0.06068,0.1354473 -0.1355377,0.1354473 z"
|
|
93
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
94
|
+
stroke-linecap="round"
|
|
95
|
+
id="path4" />
|
|
96
|
+
<path
|
|
97
|
+
d="M 8.8978133,6.9660512 H 4.7092396 c -0.074857,0 -0.1354473,-0.06059 -0.1354473,-0.1354474 0,-0.074857 0.06059,-0.1354473 0.1354473,-0.1354473 h 4.188664 c 0.074767,0 0.1354473,0.06059 0.1354473,0.1354473 0,0.074857 -0.060771,0.1354474 -0.1355376,0.1354474 z"
|
|
98
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
99
|
+
stroke-linecap="round"
|
|
100
|
+
id="path5" />
|
|
101
|
+
<path
|
|
102
|
+
d="M 7.0916681,7.9593317 H 4.7092396 c -0.074857,0 -0.1354473,-0.06068 -0.1354473,-0.1354474 0,-0.074767 0.06059,-0.1354473 0.1354473,-0.1354473 h 2.3825188 c 0.074767,0 0.1354473,0.06068 0.1354473,0.1354473 0,0.074767 -0.06068,0.1354474 -0.1355376,0.1354474 z"
|
|
103
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
104
|
+
stroke-linecap="round"
|
|
105
|
+
id="path6" />
|
|
106
|
+
<path
|
|
107
|
+
d="M 8.8978133,7.9593317 H 7.755631 c -0.074767,0 -0.1354474,-0.06068 -0.1354474,-0.1354474 0,-0.074767 0.060681,-0.1354473 0.1354474,-0.1354473 h 1.1421823 c 0.074767,0 0.1354473,0.06068 0.1354473,0.1354473 0,0.074767 -0.06068,0.1354474 -0.1354473,0.1354474 z"
|
|
108
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
109
|
+
stroke-linecap="round"
|
|
110
|
+
id="path7" />
|
|
111
|
+
<path
|
|
112
|
+
d="M 8.8978133,8.9526122 H 4.7092396 c -0.074857,0 -0.1354473,-0.06068 -0.1354473,-0.1354473 0,-0.074767 0.06059,-0.1354474 0.1354473,-0.1354474 h 4.188664 c 0.074767,0 0.1354473,0.06068 0.1354473,0.1354474 0,0.074767 -0.060771,0.1354473 -0.1355376,0.1354473 z"
|
|
113
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
114
|
+
stroke-linecap="round"
|
|
115
|
+
id="path8" />
|
|
116
|
+
<path
|
|
117
|
+
d="M 8.8978133,9.9458927 H 7.755631 c -0.074767,0 -0.1354474,-0.06068 -0.1354474,-0.1354473 0,-0.074767 0.060681,-0.1354473 0.1354474,-0.1354473 h 1.1421823 c 0.074767,0 0.1354473,0.06068 0.1354473,0.1354473 0,0.074767 -0.06068,0.1354473 -0.1354473,0.1354473 z"
|
|
118
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:0.0902982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
119
|
+
stroke-linecap="round"
|
|
120
|
+
id="path9" />
|
|
121
|
+
</g>
|
|
122
|
+
<path
|
|
123
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke-width:0.141928"
|
|
124
|
+
d="m 3.4671315,11.812336 -0.049026,-0.06233 V 7.000538 c 0,-2.6122094 0.00661,-4.7667027 0.014694,-4.7877631 0.042024,-0.109512 -0.00668,-0.107506 2.609804,-0.107506 h 2.4612642 v 0.7999667 c 0,0.9316625 0.00755,0.9806196 0.1749637,1.1349385 0.057167,0.052695 0.1449714,0.1072016 0.1951213,0.1211267 0.056568,0.015707 0.3987306,0.025369 0.9013555,0.02545 l 0.8101738,1.32e-4 v 3.781563 3.7815632 l -0.04903,0.06233 -0.04903,0.06233 H 7.0017933 3.5161577 Z m 6.3339743,-1.063659 c 0.029736,-0.02083 0.063624,-0.06301 0.075305,-0.09373 0.026589,-0.06993 -0.012898,-0.191835 -0.072468,-0.223717 -0.02578,-0.0138 -0.3671407,-0.02316 -0.8446212,-0.02316 -0.7737613,0 -0.8031373,0.0017 -0.8531245,0.04823 -0.097347,0.09069 -0.059949,0.266967 0.066504,0.313463 0.019515,0.0072 0.3817248,0.01389 0.8049103,0.01491 0.6692217,0.0016 0.7764698,-0.0031 0.8234942,-0.036 z M 9.8414229,9.4370516 C 9.9049776,9.3668243 9.899375,9.2306359 9.8306413,9.1749787 9.7779284,9.1322945 9.6769775,9.130717 6.9980975,9.130717 H 4.2202148 l -0.058062,0.058062 c -0.070957,0.070957 -0.074071,0.1517528 -0.00904,0.2344321 l 0.049026,0.062327 h 2.7976997 c 2.7902878,0 2.7978161,-1.285e-4 2.841579,-0.048486 z M 7.5086527,8.1458565 c 0.062276,-0.079171 0.062591,-0.1743943 7.952e-4,-0.240724 l -0.048231,-0.05177 H 5.8316808 4.2021442 l -0.050875,0.064677 c -0.06108,0.07765 -0.04959,0.1855913 0.026478,0.2487477 0.046412,0.038534 0.1615752,0.041396 1.6658687,0.041396 H 7.459626 Z m 2.3219886,0.018065 c 0.068734,-0.055657 0.074336,-0.1918456 0.010782,-0.2620728 -0.042643,-0.04712 -0.067221,-0.048486 -0.8721789,-0.048486 -0.7375462,0 -0.8330393,0.00429 -0.8715579,0.039148 -0.060089,0.05438 -0.057793,0.2065193 0.00405,0.2683629 0.045475,0.045475 0.078849,0.047309 0.8607763,0.047309 0.7595513,0 0.8170897,-0.00293 0.8681278,-0.044262 z M 9.8039432,6.9076738 c 0.05957,-0.031881 0.099057,-0.1537823 0.072468,-0.223717 C 9.8232532,6.5441407 10.003096,6.5523539 6.9947104,6.5523539 H 4.2423807 l -0.071912,0.071912 c -0.060183,0.060183 -0.06952,0.084296 -0.057246,0.1478419 0.00807,0.041762 0.037102,0.094558 0.064525,0.117326 0.046858,0.038904 0.2163621,0.041396 2.8163941,0.041396 1.7593489,0 2.7822868,-0.00843 2.8098015,-0.023155 z M 5.886832,5.6044487 C 5.97488,5.5351897 5.97488,5.3932846 5.886832,5.324026 5.826655,5.276691 5.797744,5.275 5.0486298,5.275 c -0.4267314,0 -0.8015175,0.00975 -0.8328579,0.021665 -0.081387,0.030943 -0.1256161,0.1477856 -0.089212,0.2356738 0.015514,0.037455 0.051401,0.079313 0.079748,0.093018 0.032698,0.015808 0.3379047,0.025502 0.8348683,0.026518 0.7579143,0.00155 0.7853512,1.04e-5 0.8456558,-0.047425 z m 3.9142738,0.011157 C 9.9163915,5.5348566 9.9105074,5.3564762 9.7907583,5.301915 9.748484,5.2826534 9.2810185,5.2749997 8.1468583,5.2749997 H 6.5620308 l -0.058061,0.058062 c -0.0366,0.036599 -0.058062,0.085088 -0.058062,0.1311759 0,0.046088 0.021462,0.094577 0.058062,0.131176 l 0.058061,0.058062 h 1.5925046 c 1.4218902,0 1.598297,-0.00406 1.6465704,-0.03787 z M 6.8264843,4.1192122 c 0.062942,-0.07775 0.057627,-0.1822623 -0.012853,-0.2527428 L 6.7555693,3.8084078 H 5.4942306 c -1.3740165,0 -1.3427865,-0.00302 -1.3769721,0.1331858 -0.020224,0.08058 0.022486,0.1848955 0.089049,0.2174932 0.03493,0.017106 0.4581489,0.023746 1.3132537,0.020605 l 1.2617145,-0.00464 z"
|
|
125
|
+
id="path10" />
|
|
126
|
+
<path
|
|
127
|
+
style="fill:#f2f2f2;fill-opacity:1;stroke-width:0.141928"
|
|
128
|
+
d="M 8.9296519,3.7610984 C 8.8845759,3.7160224 8.8823425,3.6822494 8.8823425,3.0456914 V 2.3775938 l 0.7096412,0.7093455 c 0.3903027,0.39014 0.7096413,0.7120732 0.7096413,0.715407 0,0.00333 -0.298049,0.00606 -0.6623318,0.00606 -0.6307922,0 -0.6645847,-0.00225 -0.7096413,-0.047309 z"
|
|
129
|
+
id="path11" />
|
|
130
|
+
<path
|
|
131
|
+
style="fill:#f2f2f2;fill-opacity:1;stroke-width:0.141928"
|
|
132
|
+
d="m 3.4675424,11.799991 -0.057009,-0.07205 0.016754,-4.7581109 c 0.014657,-4.1625793 0.021154,-4.762552 0.051905,-4.793593 0.04344,-0.043848 1.0629482,-0.064036 3.4443732,-0.068203 l 1.5776022,-0.00276 0.00726,0.8574832 c 0.00833,0.9830346 0.0056,0.9688431 0.2162686,1.1235431 l 0.1208758,0.088761 0.8699529,0.007 0.8699519,0.007 -7.47e-4,3.7777507 -7.48e-4,3.7777509 -0.05725,0.06505 -0.05726,0.06505 -3.4724622,-0.0013 -3.472463,-0.0013 z M 9.790337,10.759823 c 0.1117734,-0.05093 0.1337657,-0.207627 0.043557,-0.310356 -0.033309,-0.03793 -0.1050929,-0.0414 -0.8579782,-0.0414 -0.7542843,0 -0.8259145,0.0035 -0.8739236,0.04235 -0.072306,0.05855 -0.071537,0.201116 0.0015,0.278864 l 0.053798,0.05726 h 0.7871963 c 0.5346763,0 0.8060107,-0.0086 0.8458474,-0.02672 z M 9.797027,9.4711349 C 9.9188833,9.4384489 9.9240986,9.2216575 9.804487,9.1611369 9.758338,9.1377869 9.152673,9.1313399 6.9796669,9.1310659 L 4.213587,9.130717 4.1588393,9.1821496 c -0.064562,0.060653 -0.071364,0.161419 -0.016545,0.2450834 l 0.038203,0.058305 2.7826212,-3.229e-4 c 1.5304416,-1.777e-4 2.8057,-0.00651 2.8339075,-0.01408 z M 7.5194763,8.1498788 c 0.048323,-0.07375 0.048902,-0.1760954 0.00138,-0.2439432 L 7.4840321,7.8533628 H 5.8322646 4.1804969 l -0.038203,0.058305 c -0.05457,0.083284 -0.047234,0.171361 0.019859,0.2384543 l 0.058062,0.058062 h 1.6305296 1.6305294 z m 2.321957,2.429e-4 c 0.031934,-0.031934 0.058062,-0.080534 0.058062,-0.1080012 0,-0.056579 -0.041516,-0.1446781 -0.080419,-0.1706545 C 9.8047613,7.861906 9.4185865,7.853924 8.9609103,7.853725 8.0212289,7.853316 8.0544281,7.846815 8.0544281,8.0311214 c 0,0.1796445 -0.013375,0.1770621 0.9170447,0.1770621 h 0.8118993 z m 6.349e-4,-1.2684912 c 0.049602,-0.05481 0.06108,-0.2168117 0.018386,-0.2595061 -0.014376,-0.014376 -0.067357,-0.035702 -0.1177361,-0.04739 -0.051248,-0.01189 -1.2841138,-0.0215 -2.7987668,-0.021816 L 4.2367817,6.552354 4.1704367,6.615916 c -0.098673,0.094535 -0.080282,0.2443491 0.035734,0.2910932 0.028663,0.011548 1.2852137,0.021489 2.821525,0.02232 l 2.7698481,0.0015 z M 5.8926454,5.5980818 c 0.088363,-0.076007 0.088363,-0.1916821 0,-0.2676889 L 5.8282471,5.2749997 H 5.024231 4.2202148 l -0.058062,0.058062 c -0.036599,0.036599 -0.058061,0.085088 -0.058061,0.1311759 0,0.046088 0.021462,0.094577 0.058061,0.131176 l 0.058062,0.058062 H 5.024231 5.8282471 Z m 3.8976916,0.02867 C 9.9189223,5.5681643 9.9277439,5.3677853 9.8044832,5.3054196 9.7590754,5.2824448 9.3836059,5.275618 8.1505712,5.2753484 L 6.555403,5.2749997 6.5006553,5.3264324 c -0.07222,0.067848 -0.073796,0.1972715 -0.00331,0.272295 l 0.051433,0.054748 h 1.5914563 c 1.1324156,0 1.6083736,-0.00771 1.6501074,-0.026723 z M 6.8334898,4.1285786 C 6.8876499,4.04592 6.8818053,3.9286679 6.8202598,3.8631555 L 6.7688269,3.8084078 H 5.5207907 c -1.2319813,0 -1.3525882,0.00676 -1.3981143,0.078358 -0.026064,0.040991 -0.022475,0.1540298 0.00662,0.2083882 0.013861,0.025899 0.048456,0.056458 0.076878,0.06791 0.028422,0.011452 0.6226008,0.021496 1.3203968,0.022321 l 1.2687199,0.0015 z"
|
|
133
|
+
id="path12" />
|
|
134
|
+
<path
|
|
135
|
+
style="fill:#cccccc;fill-opacity:1;stroke-width:0.141928"
|
|
136
|
+
d="M 9.0912866,3.7909859 C 9.0087799,3.7857687 8.9457282,3.7686418 8.9273048,3.7464429 8.9053073,3.7199376 8.8948021,3.5368129 8.8876774,3.0556646 l -0.00969,-0.6547118 0.6885629,0.6859865 c 0.6575547,0.6550943 0.6856157,0.6866594 0.6231167,0.7009288 -0.06826,0.015584 -0.8654467,0.017847 -1.0983755,0.00312 z"
|
|
137
|
+
id="path13" />
|
|
138
|
+
</g>
|
|
139
|
+
<path
|
|
140
|
+
d="M 5.0072787,10.64398 H 6.2861994 L 3.6592621,13.731841 1.0324846,10.64398 h 1.1929466 c 0,-2.67549 2.4329981,-6.903198 6.365554,-6.903198 C 5.5465376,4.9567669 5.0072787,8.253673 5.0072787,10.64398 Z"
|
|
141
|
+
style="fill:#41a1d9;fill-rule:nonzero;stroke:none;stroke-width:0.146698;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
142
|
+
stroke-linecap="round"
|
|
143
|
+
id="path1-0" />
|
|
144
|
+
</svg>
|
|
@@ -0,0 +1,134 @@
|
|
|
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="svg14"
|
|
9
|
+
sodipodi:docname="filesave_batch.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:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs18">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01229036,0,0,0.01229036,4.0293076,3.003469)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
</defs>
|
|
39
|
+
<sodipodi:namedview
|
|
40
|
+
id="namedview16"
|
|
41
|
+
pagecolor="#ffffff"
|
|
42
|
+
bordercolor="#666666"
|
|
43
|
+
borderopacity="1.0"
|
|
44
|
+
inkscape:pageshadow="2"
|
|
45
|
+
inkscape:pageopacity="0.0"
|
|
46
|
+
inkscape:pagecheckerboard="0"
|
|
47
|
+
showgrid="false"
|
|
48
|
+
inkscape:zoom="42.022346"
|
|
49
|
+
inkscape:cx="3.9740761"
|
|
50
|
+
inkscape:cy="5.4375832"
|
|
51
|
+
inkscape:window-width="1920"
|
|
52
|
+
inkscape:window-height="1009"
|
|
53
|
+
inkscape:window-x="1912"
|
|
54
|
+
inkscape:window-y="-8"
|
|
55
|
+
inkscape:window-maximized="1"
|
|
56
|
+
inkscape:current-layer="svg14"
|
|
57
|
+
inkscape:showpageshadow="2"
|
|
58
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
59
|
+
<g
|
|
60
|
+
id="g973"
|
|
61
|
+
transform="matrix(0.71395932,0,0,0.71395932,0.02966487,0.14864919)">
|
|
62
|
+
<path
|
|
63
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
64
|
+
id="path2" fill="#808080" fill-opacity="1" />
|
|
65
|
+
<path
|
|
66
|
+
fill="#ffffff"
|
|
67
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
68
|
+
id="path4"
|
|
69
|
+
style="stroke-width:0.956731" />
|
|
70
|
+
<path
|
|
71
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
72
|
+
id="path8"
|
|
73
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
74
|
+
<path
|
|
75
|
+
fill="#b0bec5"
|
|
76
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
77
|
+
id="path10"
|
|
78
|
+
style="stroke-width:0.956731" />
|
|
79
|
+
<path
|
|
80
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
81
|
+
id="path12"
|
|
82
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
83
|
+
</g>
|
|
84
|
+
<g
|
|
85
|
+
id="g973-5"
|
|
86
|
+
transform="matrix(0.71395932,0,0,0.71395932,2.0384778,1.8711021)">
|
|
87
|
+
<path
|
|
88
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
89
|
+
id="path2-1" fill="#808080" fill-opacity="1" />
|
|
90
|
+
<path
|
|
91
|
+
fill="#ffffff"
|
|
92
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
93
|
+
id="path4-7"
|
|
94
|
+
style="stroke-width:0.956731" />
|
|
95
|
+
<path
|
|
96
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
97
|
+
id="path8-1"
|
|
98
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
99
|
+
<path
|
|
100
|
+
fill="#b0bec5"
|
|
101
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
102
|
+
id="path10-1"
|
|
103
|
+
style="stroke-width:0.956731" />
|
|
104
|
+
<path
|
|
105
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
106
|
+
id="path12-5"
|
|
107
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
108
|
+
</g>
|
|
109
|
+
<g
|
|
110
|
+
id="g973-5-7"
|
|
111
|
+
transform="matrix(0.71395932,0,0,0.71395932,4.0472907,3.593555)">
|
|
112
|
+
<path
|
|
113
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
114
|
+
id="path2-1-6" fill="#808080" fill-opacity="1" />
|
|
115
|
+
<path
|
|
116
|
+
fill="#ffffff"
|
|
117
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
118
|
+
id="path4-7-1"
|
|
119
|
+
style="stroke-width:0.956731" />
|
|
120
|
+
<path
|
|
121
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
122
|
+
id="path8-1-4"
|
|
123
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
124
|
+
<path
|
|
125
|
+
fill="#b0bec5"
|
|
126
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
127
|
+
id="path10-1-2"
|
|
128
|
+
style="stroke-width:0.956731" />
|
|
129
|
+
<path
|
|
130
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
131
|
+
id="path12-5-3"
|
|
132
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
133
|
+
</g>
|
|
134
|
+
</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="svg14"
|
|
9
|
+
sodipodi:docname="io.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:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs18">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01229036,0,0,0.01229036,4.0293076,3.003469)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
</defs>
|
|
39
|
+
<sodipodi:namedview
|
|
40
|
+
id="namedview16"
|
|
41
|
+
pagecolor="#ffffff"
|
|
42
|
+
bordercolor="#666666"
|
|
43
|
+
borderopacity="1.0"
|
|
44
|
+
inkscape:pageshadow="2"
|
|
45
|
+
inkscape:pageopacity="0.0"
|
|
46
|
+
inkscape:pagecheckerboard="0"
|
|
47
|
+
showgrid="false"
|
|
48
|
+
inkscape:zoom="59.428571"
|
|
49
|
+
inkscape:cx="2.7007212"
|
|
50
|
+
inkscape:cy="7.0588943"
|
|
51
|
+
inkscape:window-width="1920"
|
|
52
|
+
inkscape:window-height="1009"
|
|
53
|
+
inkscape:window-x="-8"
|
|
54
|
+
inkscape:window-y="-8"
|
|
55
|
+
inkscape:window-maximized="1"
|
|
56
|
+
inkscape:current-layer="svg14"
|
|
57
|
+
inkscape:showpageshadow="2"
|
|
58
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
59
|
+
<g
|
|
60
|
+
id="g973"
|
|
61
|
+
transform="translate(-2.307e-4,-2.307e-4)">
|
|
62
|
+
<path
|
|
63
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
64
|
+
id="path2" fill="#808080" fill-opacity="1" />
|
|
65
|
+
<path
|
|
66
|
+
fill="#ffffff"
|
|
67
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
68
|
+
id="path4"
|
|
69
|
+
style="stroke-width:0.956731" />
|
|
70
|
+
<path
|
|
71
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
72
|
+
id="path8"
|
|
73
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
74
|
+
<path
|
|
75
|
+
fill="#b0bec5"
|
|
76
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
77
|
+
id="path10"
|
|
78
|
+
style="stroke-width:0.956731" />
|
|
79
|
+
<path
|
|
80
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
81
|
+
id="path12"
|
|
82
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#ffc107" d="M5.56354093 1.4148357L3.82576627 7.49704701h2.49081035L4.9842827 13.0000001l4.63406576-6.66146953H6.89583484l1.8536263-4.92369487z"/><path fill="#37474f" d="M1.09244945 1.81907103L1.91152057.9999999 12.9075506 11.99602994l-.81907112.81907112z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#ffc107" d="M9.1 1H5.8L4 7.3h2.58L5.2 13 10 6.1H7.18z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#2196f3" d="M10.9 11.2H3.1L1.3 13V2.8c0-.99.81-1.8 1.8-1.8h7.8c.99 0 1.8.81 1.8 1.8v6.6c0 .99-.81 1.8-1.8 1.8z"/><g fill="#fff" transform="matrix(.3 0 0 .3 -.2 .4)"><path d="M22 20h4v11h-4z"/><circle cx="24" cy="15" r="2"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><g transform="translate(8.2787194 -1036.3584336)"><circle cx="1.7804884" cy="1046.4354" r="2.9268293" fill="#f44336"/><g fill="#fff"><path d="M3.33478104 1047.36652208l-.6207805.6207805-2.48312197-2.48312198.6207805-.6207805z"/><path d="M.8493176 1047.98964404l-.6207805-.6207805 2.48312198-2.48312197.6207805.6207805z"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><circle cx="7" cy="7" r="6" fill="#4caf50"/><g fill="#fff"><path d="M6.14285713 4.1428571h1.71428574v5.7142858H6.14285713z"/><path d="M4.1428571 6.14285713h5.7142858v1.71428574H4.1428571z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.7363281 1v7.578125H3.3046875L7 13l3.695312-4.421875H8.2636719V1H5.7363281z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M5.4210526 3.30551L1 7l4.4210526 3.69449V8.263158H13V5.736842H5.4210526V3.30551z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M8.578947 3.30551v2.431332H1v2.526316h7.578947v2.431332L13 7 8.578947 3.30551z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M7 1L3.30551 5.421053h2.431332V13h2.526316V5.421053h2.431332L7 1z"/></svg>
|
|
@@ -0,0 +1,40 @@
|
|
|
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="svg4"
|
|
9
|
+
sodipodi:docname="libre-gui-close.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
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="defs8" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview6"
|
|
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="61.642857"
|
|
28
|
+
inkscape:cx="5.9455388"
|
|
29
|
+
inkscape:cy="6.9918888"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1017"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg4" />
|
|
36
|
+
<path
|
|
37
|
+
d="M12 10.047142q0 .3367-.235692.572383l-1.144783 1.144783Q10.383842 12 10.047142 12q-.3367003 0-.572392-.235692L7 9.289558l-2.47475 2.47475Q4.2895583 12 3.9528583 12q-.3367 0-.5723833-.235692l-1.1447833-1.144783Q2 10.383842 2 10.047142t.2356917-.572392L4.7104417 7l-2.47475-2.47475Q2 4.2895583 2 3.9528583q0-.3367.2356917-.5723833L3.380475 2.2356917Q3.6161583 2 3.9528583 2t.5723917.2356917L7 4.7104417l2.47475-2.47475Q9.7104417 2 10.047142 2q.3367 0 .572383.2356917l1.144783 1.1447833Q12 3.6161583 12 3.9528583t-.235692.5723917L9.2895583 7l2.4747497 2.47475Q12 9.710442 12 10.047142z"
|
|
38
|
+
id="path2"
|
|
39
|
+
style="fill:#333333" />
|
|
40
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#e65100" d="M7.3918919 9.75675676c.02702702-.10810811.02702702-.24324325.02702702-.37837838 0-.13513513 0-.24324324-.02702703-.37837838l.75675676-.54054054c.08108108-.05405405.1081081-.16216216.05405405-.24324324l-.72972973-1.24324324c-.05405405-.08108108-.13513513-.10810811-.21621621-.08108108l-.83783784.4054054c-.18918919-.16216216-.4054054-.27027027-.64864865-.37837838L5.6891892 6c0-.08108108-.08108108-.16216216-.16216216-.16216216H4.0945946c-.08108108 0-.16216216.08108108-.16216216.16216216l-.10810811.94594595c-.24324324.08108108-.43243243.21621622-.64864865.37837838l-.83783784-.37837838c-.08108108-.02702703-.18918919 0-.21621621.08108108L1.3918919 8.27027027c-.05405406.08108108-.02702703.1891892.05405405.24324325l.75675676.54054054c-.02702703.1081081-.02702703.24324324-.02702703.37837837 0 .13513514 0 .24324325.02702703.37837838l-.75675676.54054054c-.08108108.05405406-.1081081.16216216-.05405405.24324324l.72972973 1.24324325c.05405405.08108108.13513513.1081081.21621621.08108108l.83783784-.37837838c.18918919.16216216.4054054.27027027.64864865.37837838l.08108108.91891892c0 .08108108.08108108.16216216.16216216.16216216H5.5c.08108108 0 .16216216-.08108108.16216216-.16216216l.08108108-.91891892c.24324325-.08108108.43243244-.21621622.64864865-.37837838l.83783784.37837838c.08108108.02702703.18918919 0 .21621622-.08108108l.72972972-1.24324324c.05405406-.08108109.02702703-.1891892-.05405405-.24324325l-.72972973-.5945946zm-2.5945946.97297297c-.75675676 0-1.35135135-.5945946-1.35135135-1.35135135 0-.75675676.5945946-1.35135135 1.35135135-1.35135135.75675676 0 1.35135135.5945946 1.35135135 1.35135135 0 .75675676-.5945946 1.35135135-1.35135135 1.35135135z"/><path fill="#ffa000" d="M11.7972973 4.5945946c.02702702-.13513513.02702702-.24324324.02702702-.35135135 0-.1081081 0-.21621622-.02702703-.35135135l.67567568-.48648649c.08108108-.05405405.08108108-.13513513.05405405-.21621621l-.67567567-1.16216216c-.05405406-.08108108-.13513514-.10810811-.21621622-.05405406l-.78378378.35135135c-.1891892-.13513513-.37837838-.24324324-.5945946-.35135135l-.08108108-.83783783C10.2027027 1.05405406 10.14864865 1 10.06756757 1H8.74324323c-.08108108 0-.16216216.05405405-.16216216.13513514L8.5 1.97297298c-.21621622.08108108-.4054054.1891892-.5945946.35135135l-.78378378-.35135135c-.08108108-.02702702-.16216216 0-.21621621.05405406L6.22972973 3.1891892c-.05405405.08108108-.02702703.16216216.05405406.21621621l.67567567.48648649v.35135135c0 .1081081 0 .21621622.02702703.35135135l-.67567568.48648649c-.08108108.05405405-.08108108.13513513-.05405405.21621621l.67567567 1.16216216c.05405406.08108109.13513514.10810811.21621622.05405406l.78378378-.35135135c.1891892.13513513.37837838.24324324.5945946.35135135l.08108108.83783784c0 .08108108.08108108.13513513.16216216.13513513h1.32432432c.08108108 0 .16216216-.05405405.16216216-.13513513l.08108109-.83783784c.21621621-.08108108.4054054-.1891892.59459459-.35135135l.78378378.35135135c.08108108.02702703.16216216 0 .21621622-.05405406l.67567567-1.16216216c.05405406-.08108108.02702703-.16216216-.05405405-.21621621l-.75675676-.48648649zm-2.40540541 1c-.75675676 0-1.35135135-.5945946-1.35135135-1.35135135 0-.75675676.5945946-1.35135135 1.35135135-1.35135135.75675676 0 1.35135135.5945946 1.35135135 1.35135135 0 .75675676-.5945946 1.35135135-1.35135135 1.35135135z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#7cb342" d="M7 1.2857142C3.85714281 1.2857142 1.2857142 3.85714281 1.2857142 7S3.85714281 12.7142858 7 12.7142858 12.7142858 10.14285719 12.7142858 7 10.14285719 1.2857142 7 1.2857142z"/><path fill="#0277bd" d="M13.00000009 7c0 3.3428572-2.71428575 6.00000009-6.00000009 6.00000009C3.71428567 13.00000009.99999991 10.34285719.99999991 7 .99999991 3.6571428 3.65714281.99999991 7 .99999991c3.3428572 0 6.00000009 2.6571429 6.00000009 6.00000009zM6.94285714 9.77142861c0-.11428571-.05714286-.17142857-.17142857-.22857143-.37142858-.11428572-.71428573-.11428572-1.02857145-.42857143-.05714285-.11428572-.05714285-.22857144-.11428571-.37142858-.11428572-.11428572-.42857144-.17142858-.60000001-.22857143H3.82857138c-.17142857-.05714286-.31428572-.31428572-.42857143-.4857143 0-.05714285 0-.17142857-.11428572-.17142857-.11428572-.05714286-.22857143.05714286-.37142858 0-.05714285-.05714286-.05714285-.11428572-.05714285-.17142857 0-.17142858.11428571-.37142858.22857143-.4857143.17142857-.11428571.37142857.05714286.54285715.05714286.05714286 0 .05714286 0 .11428571.05714286.17142858.05714286.22857144.28571429.22857144.4857143v.1142857c0 .05714287.05714285.05714287.11428571.05714287.05714286-.31428572.05714286-.60000001.11428572-.91428573 0-.37142858.37142857-.71428573.65714286-.82857144.11428572-.05714286.17142858.05714285.31428572 0 .37142858-.11428572 1.25714288-.4857143 1.0857143-.97142859-.11428571-.42857143-.48571429-.82857144-.97142858-.77142858-.11428572.05714286-.17142857.11428571-.28571429.17142857-.17142857.11428572-.54285715.4857143-.71428572.4857143-.31428572-.05714286-.31428572-.4857143-.22857144-.65714287.05714286-.22857143.60000001-1.02857145.97142859-.8857143l.22857143.22857143c.11428572.05714286.31428572.05714286.4857143.05714286.05714285 0 .11428571 0 .17142857-.05714286.05714286-.05714286.05714286-.05714286.05714286-.11428572 0-.17142857-.17142858-.37142857-.2857143-.48571429-.11428571-.11428571-.31428571-.22857143-.48571429-.31428572-.6-.17142857-1.5714286.05714286-2.02857146.4857143-.45714286.42857143-.82857144 1.14285716-1.0857143 1.74285716C1.9714285 5.5142857 1.85714278 5.97142856 1.79999992 6.4c-.05714286.2857143-.11428571.54285715.05714286.82857144.17142857.37142858.54285715.71428573.91428573.97142859.22857143.17142857.71428572.17142857.97142858.4857143.17142858.22857142.11428572.54285714.11428572.82857143 0 .37142858.22857143.65714287.37142858.97142859.05714286.17142857.11428571.42857143.17142857.6 0 .05714286.05714286.42857144.05714286.4857143.37142858.17142857.65714287.37142858 1.0857143.4857143.05714286 0 .2857143-.37142858.2857143-.42857144.17142857-.17142858.31428571-.42857144.48571428-.54285715.11428572-.05714286.22857144-.11428572.37142858-.22857144.11428572-.11428571.17142858-.37142857.22857143-.54285715.02857143-.14285714.08571429-.37142857.02857143-.54285715zm.11428572-5.54285722c.05714286 0 .11428571-.05714286.22857143-.11428572.17142857-.11428572.37142858-.31428572.54285715-.42857143.17142858-.11428572.37142858-.31428572.4857143-.42857144.17142857-.11428572.31428571-.37142858.37142857-.54285715.05714286-.11428572.22857143-.37142858.17142858-.54285715-.05714286-.11428572-.37142858-.17142858-.4857143-.22857143C7.8857143 1.82857135 7.4857143 1.77142849 7 1.77142849c-.17142857 0-.42857143.05714286-.4857143.22857143-.05714285.31428572.17142858.22857144.42857144.31428572 0 0 .05714286.4857143.05714286.54285715.05714286.2857143-.11428572.4857143-.11428572.77142859 0 .17142857 0 .4857143.11428572.6h.05714286zm5.0285715 4.20000006c.05714286-.11428572.05714286-.31428572.11428572-.42857144.05714286-.28571429.05714286-.6.05714286-.8857143 0-.6-.05714286-1.20000001-.22857144-1.74285716-.11428571-.17142858-.17142857-.37142858-.22857143-.54285715-.11428571-.31428572-.28571429-.60000001-.54285715-.82857145-.22857143-.31428571-.54285715-1.14285716-1.0857143-.8857143-.17142858.05714286-.2857143.2857143-.42857144.42857144-.11428571.17142857-.22857143.37142858-.37142857.54285715-.05714286.05714286-.11428572.17142858-.05714286.22857143 0 .05714286.05714286.05714286.11428571.05714286.11428572.05714286.17142858.05714286.2857143.11428572.05714285 0 .11428571.05714286.05714285.11428571 0 0 0 .05714286-.05714285.05714286-.2857143.31428572-.60000001.54285715-.8857143.82857144-.05714286.05714286-.11428572.17142858-.11428572.22857143 0 .05714286.05714286.05714286.05714286.11428572s-.05714286.05714286-.11428572.11428572c-.11428571.05714285-.22857143.11428571-.31428572.17142857-.05714285.11428572 0 .31428572-.05714285.42857144-.05714286.31428571-.22857144.54285715-.37142858.82857144-.11428572.17142857-.17142858.37142857-.2857143.54285715 0 .22857143-.05714285.42857143.05714287.6.28571429.42857144.82857144.17142858 1.25714287.37142858.11428572.05714286.22857143.05714286.31428572.17142858.17142858.17142857.17142858.4857143.22857143.65714286.05714286.22857144.11428572.4857143.22857144.71428573.05714285.28571429.17142857.6.22857143.82857144.54285715-.42857143 1.02857144-.8857143 1.37142859-1.4857143.42857143-.37142858.6-.85714288.77142858-1.34285717z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#e32629" d="M7 1C3.686607 1 1 3.68661 1 7s2.686607 6 6 6 6-2.68661 6-6-2.686607-6-6-6zm4.775893 4.08482l-1.647322.50625c-.16875-.375-.404464-.71786-.704464-1.01786-.3-.3-.642857-.53571-1.017857-.70446l.50625-1.64732c.6375.25446 1.221429.64018 1.722321 1.13839.500893.50357.886608 1.0875 1.141072 1.725zM7 9.57143C5.580357 9.57143 4.428571 8.41964 4.428571 7c0-1.41964 1.151786-2.57143 2.571429-2.57143 1.419643 0 2.571429 1.15179 2.571429 2.57143 0 1.41964-1.151786 2.57143-2.571429 2.57143zM3.3625 3.3625c.500893-.50089 1.084821-.88393 1.722321-1.13839l.50625 1.64732c-.375.16875-.717857.40446-1.017857.70446-.3.3-.535714.64286-.704464 1.01786L2.221429 5.0875c.257142-.64018.642857-1.22411 1.141071-1.725zM2.224107 8.91518l1.647322-.50625c.16875.375.404464.71786.704464 1.01786.3.3.642857.53571 1.017857.70446l-.50625 1.64732c-.6375-.25446-1.221429-.64018-1.722321-1.13839-.500893-.50357-.886608-1.0875-1.141072-1.725zM10.6375 10.6375c-.500893.50089-1.084821.88393-1.722321 1.13839l-.50625-1.64732c.375-.16875.717857-.40446 1.017857-.70446.3-.3.535714-.64286.704464-1.01786l1.647321.50625c-.257142.64018-.642857 1.22411-1.141071 1.725z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M10.5 4.5h-.75c-1.375 0-2.5 1.125-2.5 2.5s1.125 2.5 2.5 2.5h.75C11.875 9.5 13 8.375 13 7s-1.125-2.5-2.5-2.5zm0 4h-.75c-.825 0-1.5-.675-1.5-1.5s.675-1.5 1.5-1.5h.75c.825 0 1.5.675 1.5 1.5s-.675 1.5-1.5 1.5zm-6.25-4H3.5C2.125 4.5 1 5.625 1 7s1.125 2.5 2.5 2.5h.75c1.375 0 2.5-1.125 2.5-2.5s-1.125-2.5-2.5-2.5zm0 4H3.5C2.675 8.5 2 7.825 2 7s.675-1.5 1.5-1.5h.75c.825 0 1.5.675 1.5 1.5s-.675 1.5-1.5 1.5z"/><path fill="gray" d="M9.25 6.5h-4.5c-.275 0-.5.225-.5.5s.225.5.5.5h4.5c.275 0 .5-.225.5-.5s-.225-.5-.5-.5z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M1.00000006 6.33333334h11.99999988v1.33333332H1.00000006zm0-3.99999996h11.99999988V3.6666667H1.00000006zm0 7.99999992h11.99999988v1.33333332H1.00000006z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#e57373" d="M12.83636364 2.69093743L11.3090909 1.1636874c-.21818188-.21823182-.59999998-.21823182-.87272732 0l-.70909092.70911365 2.40000005 2.39999096.70909092-.70911365c.21818187-.21823183.21818187-.59990456 0-.87274093z"/><path fill="#ff9800" d="M1.80036476 9.81840063L8.51043738 3.108328l2.39094535 2.39094535-6.71007262 6.71007261z"/><path fill="#b0bec5" d="M12.1272124 4.29347409l-1.19547268 1.19547268-2.39094535-2.39094534 1.19547269-1.19547269z"/><path fill="#ffc107" d="M1.81818179 9.83634236l-.81818185 3.16363646 3.16363646-.81818184z"/><path fill="#37474f" d="M1.38181814 11.36361514l-.3818182 1.63636368 1.63636369-.38181819z"/></svg>
|