psychopy 2024.2.1__py3-none-any.whl → 2024.2.5__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.

Potentially problematic release.


This version of psychopy might be problematic. Click here for more details.

Files changed (252) hide show
  1. psychopy/.DS_Store +0 -0
  2. psychopy/CHANGELOG.txt +204 -0
  3. psychopy/GIT_SHA +1 -1
  4. psychopy/VERSION +1 -1
  5. psychopy/__init__.py +10 -1
  6. psychopy/__init__.py.orig +65 -0
  7. psychopy/app/.DS_Store +0 -0
  8. psychopy/app/Resources/.DS_Store +0 -0
  9. psychopy/app/_psychopyApp.py +11 -3
  10. psychopy/app/appData.spec +1 -1
  11. psychopy/app/builder/builder.py +1 -1
  12. psychopy/app/builder/builder.py.orig +3932 -0
  13. psychopy/app/builder/dialogs/__init__.py.orig +1679 -0
  14. psychopy/app/builder/dialogs/paramCtrls.py +1 -1
  15. psychopy/app/builder/dialogs/paramCtrls.py.orig +713 -0
  16. psychopy/app/colorpicker/__init__.py.orig +411 -0
  17. psychopy/app/cortex.log +0 -0
  18. psychopy/app/jobs.py +8 -1
  19. psychopy/app/locale/ar_001/.DS_Store +0 -0
  20. psychopy/app/locale/ar_001/LC_MESSAGE/messages.po +792 -1816
  21. psychopy/app/plugin_manager/dialog.py +9 -7
  22. psychopy/app/ribbon.py +2 -1
  23. psychopy/app/runner/runner.py +25 -13
  24. psychopy/clock.py +8 -4
  25. psychopy/core.py.orig +169 -0
  26. psychopy/demos/builder/Design Templates/randomisedBlocks/randomisedBlocks_lastrun.py +330 -0
  27. psychopy/demos/builder/Tools/.DS_Store +0 -0
  28. psychopy/demos/builder/Tools/gammaCalibration/.DS_Store +0 -0
  29. psychopy/demos/builder/Tools/gammaCalibration/data/.DS_Store +0 -0
  30. psychopy/demos/builder/Tools/gammaCalibration/data/_gamma_correction_visual_2022-05-18_14h18.29.439.csv +38 -0
  31. psychopy/demos/builder/Tools/gammaCalibration/data/_gamma_correction_visual_2022-05-18_14h18.29.439.log +3418 -0
  32. psychopy/demos/builder/Tools/gammaCalibration/data/_gamma_correction_visual_2022-05-18_14h18.29.439.psydat +0 -0
  33. psychopy/demos/builder/Tools/gammaCalibration/data/x1_gamma_correction_visual_2022-05-17_13h59.42.928.csv +2 -0
  34. psychopy/demos/builder/Tools/gammaCalibration/data/x1_gamma_correction_visual_2022-05-17_13h59.42.928.log +15 -0
  35. psychopy/demos/builder/Tools/gammaCalibration/data/x1_gamma_correction_visual_2022-05-17_13h59.42.928.psydat +0 -0
  36. psychopy/demos/builder/Tools/gammaCalibration/gamma_correction_visual_lastrun.py +562 -0
  37. psychopy/demos/coder/.DS_Store +0 -0
  38. psychopy/demos/coder/experiment control/info_gamma.pickle +0 -0
  39. psychopy/demos/coder/iohub/.iohpid +1 -0
  40. psychopy/demos/coder/iohub/eyetracking/.iohpid +1 -0
  41. psychopy/demos/coder/iohub/wintab/.DS_Store +0 -0
  42. psychopy/demos/coder/stimuli/.DS_Store +0 -0
  43. psychopy/experiment/_experiment.py +32 -7
  44. psychopy/experiment/_experiment.py.orig +1032 -0
  45. psychopy/experiment/components/.DS_Store +0 -0
  46. psychopy/experiment/components/_base.py +13 -4
  47. psychopy/experiment/components/_base.py.orig +823 -0
  48. psychopy/experiment/components/form/.DS_Store +0 -0
  49. psychopy/experiment/components/microphone/__init__.py +10 -1
  50. psychopy/experiment/components/microphone/__init__.py.orig +490 -0
  51. psychopy/experiment/components/polygon/__init__.py +21 -22
  52. psychopy/experiment/components/settings/__init__.py +13 -14
  53. psychopy/experiment/components/settings/__init__.py.orig +1337 -0
  54. psychopy/experiment/components/textbox/__init__.py.orig +310 -0
  55. psychopy/experiment/components/webcam/.DS_Store +0 -0
  56. psychopy/experiment/components/webcam/light/.DS_Store +0 -0
  57. psychopy/experiment/flow.py +10 -8
  58. psychopy/experiment/loops.py.orig +829 -0
  59. psychopy/experiment/params.py +8 -3
  60. psychopy/experiment/params.py.orig +408 -0
  61. psychopy/experiment/routine.py.orig +503 -0
  62. psychopy/experiment/routines/_base.py +15 -6
  63. psychopy/experiment/routines/counterbalance/__init__.py +1 -0
  64. psychopy/gui/qtgui.py +14 -7
  65. psychopy/gui/util.py +10 -14
  66. psychopy/gui/wxgui.py +10 -4
  67. psychopy/hardware/.DS_Store +0 -0
  68. psychopy/hardware/brainproducts.py.orig +680 -0
  69. psychopy/hardware/iolab.py.orig +238 -0
  70. psychopy/hardware/manager.py +1 -1
  71. psychopy/hardware/photodiode.py +59 -27
  72. psychopy/hardware/speaker.py +4 -4
  73. psychopy/iohub/client/__init__.py +17 -0
  74. psychopy/iohub/client/keyboard.py +5 -0
  75. psychopy/iohub/datastore/__init__.py.orig +443 -0
  76. psychopy/iohub/datastore/util.py.orig +692 -0
  77. psychopy/iohub/devices/mouse/darwin.py.orig +427 -0
  78. psychopy/iohub/devices/mouse/linux2.py +4 -0
  79. psychopy/iohub/devices/mouse/linux2.py.orig +198 -0
  80. psychopy/iohub/devices/mouse/win32.py +5 -0
  81. psychopy/preferences/.DS_Store +0 -0
  82. psychopy/projects/pavlovia.py +10 -3
  83. psychopy/projects/pavlovia.py.orig +1295 -0
  84. psychopy/sound/backend_ptb.py +22 -5
  85. psychopy/sound/transcribe.py +24 -4
  86. psychopy/tests/.DS_Store +0 -0
  87. psychopy/tests/data/.DS_Store +0 -0
  88. psychopy/tests/data/TestCircle_fill_local.png +0 -0
  89. psychopy/tests/data/aperture1_normHexbackground_local.png +0 -0
  90. psychopy/tests/data/aperture1_norm_local.png +0 -0
  91. psychopy/tests/data/aperture2_normHexbackground_local.png +0 -0
  92. psychopy/tests/data/beatandrcos_height_local.png +0 -0
  93. psychopy/tests/data/beatandrcos_normAddBlend_local.png +0 -0
  94. psychopy/tests/data/beatandrcos_normHexbackground_local.png +0 -0
  95. psychopy/tests/data/beatandrcos_norm_local.png +0 -0
  96. psychopy/tests/data/beatandrcos_stencil_local.png +0 -0
  97. psychopy/tests/data/blend_add_height_local.png +0 -0
  98. psychopy/tests/data/blend_add_normAddBlend_local.png +0 -0
  99. psychopy/tests/data/blend_add_normHexbackground_local.png +0 -0
  100. psychopy/tests/data/blend_add_normNoShade_local.png +0 -0
  101. psychopy/tests/data/blend_add_norm_local.png +0 -0
  102. psychopy/tests/data/blend_add_stencil_local.png +0 -0
  103. psychopy/tests/data/bufferimg_gabor_height_local.png +0 -0
  104. psychopy/tests/data/bufferimg_gabor_normAddBlend_local.png +0 -0
  105. psychopy/tests/data/bufferimg_gabor_normHexbackground_local.png +0 -0
  106. psychopy/tests/data/bufferimg_gabor_normNoShade_local.png +0 -0
  107. psychopy/tests/data/bufferimg_gabor_norm_local.png +0 -0
  108. psychopy/tests/data/bufferimg_gabor_stencil_local.png +0 -0
  109. psychopy/tests/data/circleHex_height_local.png +0 -0
  110. psychopy/tests/data/circleHex_normAddBlend_local.png +0 -0
  111. psychopy/tests/data/circleHex_normHexbackground_local.png +0 -0
  112. psychopy/tests/data/circleHex_normNoShade_local.png +0 -0
  113. psychopy/tests/data/circleHex_norm_local.png +0 -0
  114. psychopy/tests/data/circleHex_stencil_local.png +0 -0
  115. psychopy/tests/data/color_comparison_local.png +0 -0
  116. psychopy/tests/data/correctScript/.DS_Store +0 -0
  117. psychopy/tests/data/dots_height_local.png +0 -0
  118. psychopy/tests/data/dots_normAddBlend_local.png +0 -0
  119. psychopy/tests/data/dots_normHexbackground_local.png +0 -0
  120. psychopy/tests/data/dots_normNoShade_local.png +0 -0
  121. psychopy/tests/data/dots_norm_local.png +0 -0
  122. psychopy/tests/data/dots_stencil_local.png +0 -0
  123. psychopy/tests/data/elarray1_height_local.png +0 -0
  124. psychopy/tests/data/elarray1_normAddBlend_local.png +0 -0
  125. psychopy/tests/data/elarray1_normHexbackground_local.png +0 -0
  126. psychopy/tests/data/elarray1_norm_local.png +0 -0
  127. psychopy/tests/data/elarray1_stencil_local.png +0 -0
  128. psychopy/tests/data/envelopeandrcos_height_local.png +0 -0
  129. psychopy/tests/data/envelopeandrcos_normAddBlend_local.png +0 -0
  130. psychopy/tests/data/envelopeandrcos_normHexbackground_local.png +0 -0
  131. psychopy/tests/data/envelopeandrcos_norm_local.png +0 -0
  132. psychopy/tests/data/envelopeandrcos_stencil_local.png +0 -0
  133. psychopy/tests/data/envelopepowerandrcos_height_local.png +0 -0
  134. psychopy/tests/data/envelopepowerandrcos_normAddBlend_local.png +0 -0
  135. psychopy/tests/data/envelopepowerandrcos_normHexbackground_local.png +0 -0
  136. psychopy/tests/data/envelopepowerandrcos_norm_local.png +0 -0
  137. psychopy/tests/data/envelopepowerandrcos_stencil_local.png +0 -0
  138. psychopy/tests/data/gabor1_height_local.png +0 -0
  139. psychopy/tests/data/gabor1_normAddBlend_local.png +0 -0
  140. psychopy/tests/data/gabor1_normHexbackground_local.png +0 -0
  141. psychopy/tests/data/gabor1_normNoShade_local.png +0 -0
  142. psychopy/tests/data/gabor1_norm_local.png +0 -0
  143. psychopy/tests/data/gabor1_stencil_local.png +0 -0
  144. psychopy/tests/data/greyscale_normHexbackground_local.png +0 -0
  145. psychopy/tests/data/imageAndGauss_height_local.png +0 -0
  146. psychopy/tests/data/imageAndGauss_normAddBlend_local.png +0 -0
  147. psychopy/tests/data/imageAndGauss_normHexbackground_local.png +0 -0
  148. psychopy/tests/data/imageAndGauss_normNoShade_local.png +0 -0
  149. psychopy/tests/data/imageAndGauss_norm_local.png +0 -0
  150. psychopy/tests/data/imageAndGauss_stencil_local.png +0 -0
  151. psychopy/tests/data/movFrame1_stencil_local.png +0 -0
  152. psychopy/tests/data/noiseAndRcos_height_local.png +0 -0
  153. psychopy/tests/data/noiseAndRcos_normAddBlend_local.png +0 -0
  154. psychopy/tests/data/noiseAndRcos_normHexbackground_local.png +0 -0
  155. psychopy/tests/data/noiseAndRcos_normNoShade_local.png +0 -0
  156. psychopy/tests/data/noiseAndRcos_norm_local.png +0 -0
  157. psychopy/tests/data/noiseAndRcos_stencil_local.png +0 -0
  158. psychopy/tests/data/noiseFiltersAndRcos_height_local.png +0 -0
  159. psychopy/tests/data/noiseFiltersAndRcos_normAddBlend_local.png +0 -0
  160. psychopy/tests/data/noiseFiltersAndRcos_normHexbackground_local.png +0 -0
  161. psychopy/tests/data/noiseFiltersAndRcos_normNoShade_local.png +0 -0
  162. psychopy/tests/data/noiseFiltersAndRcos_norm_local.png +0 -0
  163. psychopy/tests/data/noiseFiltersAndRcos_stencil_local.png +0 -0
  164. psychopy/tests/data/numpyImage_height_local.png +0 -0
  165. psychopy/tests/data/numpyImage_normAddBlend_local.png +0 -0
  166. psychopy/tests/data/numpyImage_normHexbackground_local.png +0 -0
  167. psychopy/tests/data/numpyImage_normNoShade_local.png +0 -0
  168. psychopy/tests/data/numpyImage_norm_local.png +0 -0
  169. psychopy/tests/data/numpyImage_stencil_local.png +0 -0
  170. psychopy/tests/data/shape2_1_normAddBlend_local.png +0 -0
  171. psychopy/tests/data/shape2_1_normHexbackground_local.png +0 -0
  172. psychopy/tests/data/shape2_1_normNoShade_local.png +0 -0
  173. psychopy/tests/data/shape2_1_norm_local.png +0 -0
  174. psychopy/tests/data/shape2_1_stencil_local.png +0 -0
  175. psychopy/tests/data/test_loaded_namespace/test_counterbalance.psyexp +142 -0
  176. psychopy/tests/data/test_loaded_namespace/test_custom_missing.psyexp +129 -0
  177. psychopy/tests/data/test_loaded_namespace/test_missing_counterbalance.psyexp +116 -0
  178. psychopy/tests/data/test_loaded_namespace/test_mix_exp.psyexp +181 -0
  179. psychopy/tests/data/test_loaded_namespace/test_mix_missing.psyexp +140 -0
  180. psychopy/tests/data/test_loaded_namespace/test_mix_name_calibration.psyexp +164 -0
  181. psychopy/tests/data/text1_height_local.png +0 -0
  182. psychopy/tests/data/text1_normAddBlend_local.png +0 -0
  183. psychopy/tests/data/text1_normHexbackground_local.png +0 -0
  184. psychopy/tests/data/text1_norm_local.png +0 -0
  185. psychopy/tests/data/text1_stencil_local.png +0 -0
  186. psychopy/tests/data/wedge1_height_local.png +0 -0
  187. psychopy/tests/data/wedge1_normAddBlend_local.png +0 -0
  188. psychopy/tests/data/wedge1_normHexbackground_local.png +0 -0
  189. psychopy/tests/data/wedge1_normNoShade_local.png +0 -0
  190. psychopy/tests/data/wedge1_norm_local.png +0 -0
  191. psychopy/tests/data/wedge1_stencil_local.png +0 -0
  192. psychopy/tests/test_app/.DS_Store +0 -0
  193. psychopy/tests/test_app/test_builder/.DS_Store +0 -0
  194. psychopy/tests/test_app/test_builder/data/_2021_ 5_03_1206.log +177 -0
  195. psychopy/tests/test_app/test_builder/data/_2021_ 5_03_1206.psydat +0 -0
  196. psychopy/tests/test_app/test_builder/data/_2021_ 5_03_1206.xlsx +0 -0
  197. psychopy/tests/test_app/test_builder/data/_2021_ 5_03_1324.log +168 -0
  198. psychopy/tests/test_app/test_builder/data/_2021_ 5_03_1324.psydat +0 -0
  199. psychopy/tests/test_app/test_builder/data/_2021_ 5_03_1324.xlsx +0 -0
  200. psychopy/tests/test_data/.DS_Store +0 -0
  201. psychopy/tests/test_experiment/test_experiment.py +96 -0
  202. psychopy/tests/test_hardware/test_CRS_BitsSharp.py.orig +68 -0
  203. psychopy/tests/test_tools/test_arraytools.py +112 -0
  204. psychopy/tests/test_visual/test_image.py.orig +219 -0
  205. psychopy/tools/arraytools.py +47 -0
  206. psychopy/tools/versionchooser.py +1 -1
  207. psychopy/visual/backends/pygletbackend.py +26 -8
  208. psychopy/visual/basevisual.py.orig +1723 -0
  209. psychopy/visual/form.py.orig +1181 -0
  210. psychopy/visual/text.py.orig +752 -0
  211. psychopy/visual/textbox2/textbox2.py.orig +1315 -0
  212. psychopy/visual/window.py +13 -5
  213. psychopy/visual/windowwarp.py.orig +463 -0
  214. {psychopy-2024.2.1.dist-info → psychopy-2024.2.5.dist-info}/METADATA +9 -9
  215. {psychopy-2024.2.1.dist-info → psychopy-2024.2.5.dist-info}/RECORD +220 -84
  216. {psychopy-2024.2.1.dist-info → psychopy-2024.2.5.dist-info}/WHEEL +1 -1
  217. {psychopy-2024.2.1.dist-info → psychopy-2024.2.5.dist-info}/entry_points.txt +2 -0
  218. psychopy/app/locale/ar_001/LC_MESSAGE/messages.mo +0 -0
  219. psychopy/app/locale/cs_CZ/LC_MESSAGE/messages.mo +0 -0
  220. psychopy/app/locale/da_DK/LC_MESSAGE/messages.mo +0 -0
  221. psychopy/app/locale/de_DE/LC_MESSAGE/messages.mo +0 -0
  222. psychopy/app/locale/el_GR/LC_MESSAGE/messages.mo +0 -0
  223. psychopy/app/locale/en_NZ/LC_MESSAGE/messages.mo +0 -0
  224. psychopy/app/locale/en_US/LC_MESSAGE/messages.mo +0 -0
  225. psychopy/app/locale/es_CO/LC_MESSAGE/messages.mo +0 -0
  226. psychopy/app/locale/es_ES/LC_MESSAGE/messages.mo +0 -0
  227. psychopy/app/locale/es_US/LC_MESSAGE/messages.mo +0 -0
  228. psychopy/app/locale/et_EE/LC_MESSAGE/messages.mo +0 -0
  229. psychopy/app/locale/fa_IR/LC_MESSAGE/messages.mo +0 -0
  230. psychopy/app/locale/fi_FI/LC_MESSAGE/messages.mo +0 -0
  231. psychopy/app/locale/fr_FR/LC_MESSAGE/messages.mo +0 -0
  232. psychopy/app/locale/he_IL/LC_MESSAGE/messages.mo +0 -0
  233. psychopy/app/locale/hi_IN/LC_MESSAGE/messages.mo +0 -0
  234. psychopy/app/locale/hu_HU/LC_MESSAGE/messages.mo +0 -0
  235. psychopy/app/locale/it_IT/LC_MESSAGE/messages.mo +0 -0
  236. psychopy/app/locale/ja_JP/LC_MESSAGE/messages.mo +0 -0
  237. psychopy/app/locale/ko_KR/LC_MESSAGE/messages.mo +0 -0
  238. psychopy/app/locale/ms_MY/LC_MESSAGE/messages.mo +0 -0
  239. psychopy/app/locale/nl_NL/LC_MESSAGE/messages.mo +0 -0
  240. psychopy/app/locale/nn_NO/LC_MESSAGE/messages.mo +0 -0
  241. psychopy/app/locale/pl_PL/LC_MESSAGE/messages.mo +0 -0
  242. psychopy/app/locale/pt_PT/LC_MESSAGE/messages.mo +0 -0
  243. psychopy/app/locale/ro_RO/LC_MESSAGE/messages.mo +0 -0
  244. psychopy/app/locale/ru_RU/LC_MESSAGE/messages.mo +0 -0
  245. psychopy/app/locale/sv_SE/LC_MESSAGE/messages.mo +0 -0
  246. psychopy/app/locale/tr_TR/LC_MESSAGE/messages.mo +0 -0
  247. psychopy/app/locale/zh_CN/LC_MESSAGE/messages.mo +0 -0
  248. psychopy/app/locale/zh_TW/LC_MESSAGE/messages.mo +0 -0
  249. psychopy-2024.2.1.dist-info/licenses/AUTHORS.md +0 -138
  250. /psychopy/{app/locale/es_ES/LC_MESSAGE → demos/builder}/.DS_Store +0 -0
  251. /psychopy/{visual → demos/builder/Experiments}/.DS_Store +0 -0
  252. {psychopy-2024.2.1.dist-info → psychopy-2024.2.5.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,38 @@
1
+ frame_cycles.thisRepN,frame_cycles.thisTrialN,frame_cycles.thisN,frame_cycles.thisIndex,trials.startVal,trials.startValSd,trials.label,trials.thisIndex,trials.thisRepN,trials.thisN,trials.direction,trials.stepSize,trials.stepType,trials.intensity,trials.response,participant,session,date,expName,psychopyVersion,frameRate,
2
+ ,,,,0.8,0.2,start low,0,1,0,start,4,lin,0.8,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
3
+ ,,,,3,0.2,start high,1,1,1,start,4,lin,3,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
4
+ ,,,,0.8,0.2,start low,0,2,2,start,4,lin,0.9742382824467385,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
5
+ ,,,,3,0.2,start high,1,2,3,start,4,lin,2.9939328828188576,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
6
+ ,,,,0.8,0.2,start low,0,3,4,start,4,lin,1.0829717988169412,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
7
+ ,,,,3,0.2,start high,1,3,5,start,4,lin,2.9543043722999296,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
8
+ ,,,,0.8,0.2,start low,0,4,6,start,4,lin,1.17081333883496,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
9
+ ,,,,3,0.2,start high,1,4,7,start,4,lin,2.9191776572267263,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
10
+ ,,,,3,0.2,start high,1,5,8,start,4,lin,3.0469823681526607,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
11
+ ,,,,0.8,0.2,start low,0,5,9,start,4,lin,1.2470220577784352,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
12
+ ,,,,0.8,0.2,start low,0,6,10,start,4,lin,1.316132170465703,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
13
+ ,,,,3,0.2,start high,1,6,11,start,4,lin,3.021452166430676,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
14
+ ,,,,0.8,0.2,start low,0,7,12,start,4,lin,1.3022729364739205,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
15
+ ,,,,3,0.2,start high,1,7,13,start,4,lin,3.119441751241255,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
16
+ ,,,,3,0.2,start high,1,8,14,start,4,lin,3.097244825678901,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
17
+ ,,,,0.8,0.2,start low,0,8,15,start,4,lin,1.289403232336042,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
18
+ ,,,,3,0.2,start high,1,9,16,start,4,lin,3.185617137511655,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
19
+ ,,,,0.8,0.2,start low,0,9,17,start,4,lin,1.342119422611197,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
20
+ ,,,,0.8,0.2,start low,0,10,18,start,4,lin,1.3926118925672575,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
21
+ ,,,,3,0.2,start high,1,10,19,start,4,lin,3.166022700065317,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
22
+ ,,,,0.8,0.2,start low,0,11,20,start,4,lin,1.381350089846174,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
23
+ ,,,,3,0.2,start high,1,11,21,start,4,lin,3.24599595749914,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
24
+ ,,,,3,0.2,start high,1,12,22,start,4,lin,3.228460757314609,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
25
+ ,,,,0.8,0.2,start low,0,12,23,start,4,lin,1.4273690408286321,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
26
+ ,,,,0.8,0.2,start low,0,13,24,start,4,lin,1.417165322346265,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
27
+ ,,,,3,0.2,start high,1,13,25,start,4,lin,3.213040878255229,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
28
+ ,,,,3,0.2,start high,1,14,26,start,4,lin,3.1992454352827493,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
29
+ ,,,,0.8,0.2,start low,0,14,27,start,4,lin,1.460758223208908,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
30
+ ,,,,0.8,0.2,start low,0,15,28,start,4,lin,1.4511913159428556,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
31
+ ,,,,3,0.2,start high,1,15,29,start,4,lin,3.1871349093881,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
32
+ ,,,,0.8,0.2,start low,0,16,30,start,4,lin,1.442371565991715,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
33
+ ,,,,3,0.2,start high,1,16,31,start,4,lin,3.238361057089684,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
34
+ ,,,,3,0.2,start high,1,17,32,start,4,lin,3.2266413468886985,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
35
+ ,,,,0.8,0.2,start low,0,17,33,start,4,lin,1.4789059563524067,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
36
+ ,,,,3,0.2,start high,1,18,34,start,4,lin,3.216211958511995,0,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
37
+ ,,,,0.8,0.2,start low,0,18,35,start,4,lin,1.4705100761905188,1,,001,2022-05-18_14h18.29.439,gamma_correction_visual,2022.2.0dev3,59.93152834587774,
38
+ ,,,,3,0.2,start high,1,19,36,start,4,lin,3.261143633039598,,,,,,,,