zaber-motion 7.11.0__tar.gz → 7.13.0__tar.gz

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.
Files changed (993) hide show
  1. zaber_motion-7.13.0/LICENSE.txt +2119 -0
  2. zaber_motion-7.13.0/MANIFEST.in +4 -0
  3. zaber_motion-7.13.0/PKG-INFO +2150 -0
  4. zaber_motion-7.13.0/README.md +9 -0
  5. zaber_motion-7.13.0/pyproject.toml +52 -0
  6. zaber_motion-7.13.0/setup.cfg +8 -0
  7. zaber_motion-7.13.0/setup.py +47 -0
  8. zaber_motion-7.13.0/zaber_bson/LICENSE +25 -0
  9. zaber_motion-7.13.0/zaber_bson/__init__.py +48 -0
  10. zaber_motion-7.13.0/zaber_bson/codec.py +400 -0
  11. zaber_motion-7.13.0/zaber_bson/types.py +49 -0
  12. zaber_motion-7.13.0/zaber_motion/__init__.py +103 -0
  13. zaber_motion-7.13.0/zaber_motion/ascii/__init__.py +73 -0
  14. zaber_motion-7.13.0/zaber_motion/ascii/all_axes.py +352 -0
  15. zaber_motion-7.13.0/zaber_motion/ascii/axis.py +1673 -0
  16. zaber_motion-7.13.0/zaber_motion/ascii/axis_group.py +391 -0
  17. zaber_motion-7.13.0/zaber_motion/ascii/axis_settings.py +752 -0
  18. zaber_motion-7.13.0/zaber_motion/ascii/connection.py +1174 -0
  19. zaber_motion-7.13.0/zaber_motion/ascii/device.py +908 -0
  20. zaber_motion-7.13.0/zaber_motion/ascii/device_io.py +1170 -0
  21. zaber_motion-7.13.0/zaber_motion/ascii/device_settings.py +735 -0
  22. zaber_motion-7.13.0/zaber_motion/ascii/lockstep.py +1184 -0
  23. zaber_motion-7.13.0/zaber_motion/ascii/oscilloscope.py +635 -0
  24. zaber_motion-7.13.0/zaber_motion/ascii/oscilloscope_data.py +240 -0
  25. zaber_motion-7.13.0/zaber_motion/ascii/pvt.py +105 -0
  26. zaber_motion-7.13.0/zaber_motion/ascii/pvt_buffer.py +146 -0
  27. zaber_motion-7.13.0/zaber_motion/ascii/pvt_io.py +630 -0
  28. zaber_motion-7.13.0/zaber_motion/ascii/pvt_sequence.py +1530 -0
  29. zaber_motion-7.13.0/zaber_motion/ascii/servo_tuner.py +637 -0
  30. zaber_motion-7.13.0/zaber_motion/ascii/setting_constants.py +1755 -0
  31. zaber_motion-7.13.0/zaber_motion/ascii/storage.py +905 -0
  32. zaber_motion-7.13.0/zaber_motion/ascii/stream.py +2182 -0
  33. zaber_motion-7.13.0/zaber_motion/ascii/stream_buffer.py +101 -0
  34. zaber_motion-7.13.0/zaber_motion/ascii/stream_io.py +700 -0
  35. zaber_motion-7.13.0/zaber_motion/ascii/streams.py +105 -0
  36. zaber_motion-7.13.0/zaber_motion/ascii/transport.py +202 -0
  37. zaber_motion-7.13.0/zaber_motion/ascii/trigger.py +886 -0
  38. zaber_motion-7.13.0/zaber_motion/ascii/triggers.py +241 -0
  39. zaber_motion-7.13.0/zaber_motion/ascii/warning_flags.py +178 -0
  40. zaber_motion-7.13.0/zaber_motion/ascii/warnings.py +152 -0
  41. zaber_motion-7.13.0/zaber_motion/async_utils.py +46 -0
  42. zaber_motion-7.13.0/zaber_motion/binary/__init__.py +14 -0
  43. zaber_motion-7.13.0/zaber_motion/binary/connection.py +648 -0
  44. zaber_motion-7.13.0/zaber_motion/binary/device.py +924 -0
  45. zaber_motion-7.13.0/zaber_motion/binary/device_settings.py +121 -0
  46. zaber_motion-7.13.0/zaber_motion/bindings.py +50 -0
  47. zaber_motion-7.13.0/zaber_motion/call.py +198 -0
  48. zaber_motion-7.13.0/zaber_motion/convert_exception.py +138 -0
  49. zaber_motion-7.13.0/zaber_motion/dto/__init__.py +11 -0
  50. zaber_motion-7.13.0/zaber_motion/dto/ascii/__init__.py +46 -0
  51. zaber_motion-7.13.0/zaber_motion/dto/ascii/alert_event.py +110 -0
  52. zaber_motion-7.13.0/zaber_motion/dto/ascii/axis_identity.py +134 -0
  53. zaber_motion-7.13.0/zaber_motion/dto/ascii/axis_type.py +14 -0
  54. zaber_motion-7.13.0/zaber_motion/dto/ascii/can_set_state_axis_response.py +69 -0
  55. zaber_motion-7.13.0/zaber_motion/dto/ascii/can_set_state_device_response.py +75 -0
  56. zaber_motion-7.13.0/zaber_motion/dto/ascii/conversion_factor.py +81 -0
  57. zaber_motion-7.13.0/zaber_motion/dto/ascii/device_identity.py +136 -0
  58. zaber_motion-7.13.0/zaber_motion/dto/ascii/device_io_info.py +108 -0
  59. zaber_motion-7.13.0/zaber_motion/dto/ascii/digital_output_action.py +13 -0
  60. zaber_motion-7.13.0/zaber_motion/dto/ascii/get_axis_setting.py +64 -0
  61. zaber_motion-7.13.0/zaber_motion/dto/ascii/get_axis_setting_result.py +81 -0
  62. zaber_motion-7.13.0/zaber_motion/dto/ascii/get_setting.py +88 -0
  63. zaber_motion-7.13.0/zaber_motion/dto/ascii/get_setting_result.py +87 -0
  64. zaber_motion-7.13.0/zaber_motion/dto/ascii/io_port_label.py +84 -0
  65. zaber_motion-7.13.0/zaber_motion/dto/ascii/io_port_type.py +14 -0
  66. zaber_motion-7.13.0/zaber_motion/dto/ascii/lockstep_axes.py +108 -0
  67. zaber_motion-7.13.0/zaber_motion/dto/ascii/measurement_sequence.py +73 -0
  68. zaber_motion-7.13.0/zaber_motion/dto/ascii/message_type.py +14 -0
  69. zaber_motion-7.13.0/zaber_motion/dto/ascii/optional_measurement_sequence.py +71 -0
  70. zaber_motion-7.13.0/zaber_motion/dto/ascii/oscilloscope_capture_properties.py +116 -0
  71. zaber_motion-7.13.0/zaber_motion/dto/ascii/oscilloscope_data_source.py +11 -0
  72. zaber_motion-7.13.0/zaber_motion/dto/ascii/paramset_info.py +92 -0
  73. zaber_motion-7.13.0/zaber_motion/dto/ascii/pid_tuning.py +125 -0
  74. zaber_motion-7.13.0/zaber_motion/dto/ascii/pvt_axis_definition.py +70 -0
  75. zaber_motion-7.13.0/zaber_motion/dto/ascii/pvt_axis_type.py +11 -0
  76. zaber_motion-7.13.0/zaber_motion/dto/ascii/pvt_csv_data.py +75 -0
  77. zaber_motion-7.13.0/zaber_motion/dto/ascii/pvt_mode.py +12 -0
  78. zaber_motion-7.13.0/zaber_motion/dto/ascii/pvt_sequence_data.py +99 -0
  79. zaber_motion-7.13.0/zaber_motion/dto/ascii/response.py +137 -0
  80. zaber_motion-7.13.0/zaber_motion/dto/ascii/servo_tuning_param.py +66 -0
  81. zaber_motion-7.13.0/zaber_motion/dto/ascii/servo_tuning_paramset.py +21 -0
  82. zaber_motion-7.13.0/zaber_motion/dto/ascii/set_state_axis_response.py +75 -0
  83. zaber_motion-7.13.0/zaber_motion/dto/ascii/set_state_device_response.py +80 -0
  84. zaber_motion-7.13.0/zaber_motion/dto/ascii/simple_tuning.py +118 -0
  85. zaber_motion-7.13.0/zaber_motion/dto/ascii/simple_tuning_param_definition.py +100 -0
  86. zaber_motion-7.13.0/zaber_motion/dto/ascii/stream_axis_definition.py +70 -0
  87. zaber_motion-7.13.0/zaber_motion/dto/ascii/stream_axis_type.py +11 -0
  88. zaber_motion-7.13.0/zaber_motion/dto/ascii/stream_mode.py +13 -0
  89. zaber_motion-7.13.0/zaber_motion/dto/ascii/trigger_action.py +12 -0
  90. zaber_motion-7.13.0/zaber_motion/dto/ascii/trigger_condition.py +15 -0
  91. zaber_motion-7.13.0/zaber_motion/dto/ascii/trigger_enabled_state.py +68 -0
  92. zaber_motion-7.13.0/zaber_motion/dto/ascii/trigger_operation.py +12 -0
  93. zaber_motion-7.13.0/zaber_motion/dto/ascii/trigger_state.py +114 -0
  94. zaber_motion-7.13.0/zaber_motion/dto/ascii/unknown_response_event.py +137 -0
  95. zaber_motion-7.13.0/zaber_motion/dto/axis_address.py +74 -0
  96. zaber_motion-7.13.0/zaber_motion/dto/binary/__init__.py +11 -0
  97. zaber_motion-7.13.0/zaber_motion/dto/binary/binary_settings.py +74 -0
  98. zaber_motion-7.13.0/zaber_motion/dto/binary/command_code.py +106 -0
  99. zaber_motion-7.13.0/zaber_motion/dto/binary/device_identity.py +156 -0
  100. zaber_motion-7.13.0/zaber_motion/dto/binary/device_type.py +12 -0
  101. zaber_motion-7.13.0/zaber_motion/dto/binary/error_code.py +101 -0
  102. zaber_motion-7.13.0/zaber_motion/dto/binary/message.py +91 -0
  103. zaber_motion-7.13.0/zaber_motion/dto/binary/reply_code.py +16 -0
  104. zaber_motion-7.13.0/zaber_motion/dto/binary/reply_only_event.py +91 -0
  105. zaber_motion-7.13.0/zaber_motion/dto/binary/unknown_response_event.py +91 -0
  106. zaber_motion-7.13.0/zaber_motion/dto/channel_address.py +74 -0
  107. zaber_motion-7.13.0/zaber_motion/dto/device_db_source.py +66 -0
  108. zaber_motion-7.13.0/zaber_motion/dto/device_db_source_type.py +11 -0
  109. zaber_motion-7.13.0/zaber_motion/dto/exceptions/__init__.py +24 -0
  110. zaber_motion-7.13.0/zaber_motion/dto/exceptions/binary_command_failed_exception_data.py +57 -0
  111. zaber_motion-7.13.0/zaber_motion/dto/exceptions/command_failed_exception_data.py +151 -0
  112. zaber_motion-7.13.0/zaber_motion/dto/exceptions/command_too_long_exception_data.py +98 -0
  113. zaber_motion-7.13.0/zaber_motion/dto/exceptions/device_address_conflict_exception_data.py +63 -0
  114. zaber_motion-7.13.0/zaber_motion/dto/exceptions/device_db_failed_exception_data.py +74 -0
  115. zaber_motion-7.13.0/zaber_motion/dto/exceptions/device_db_inner_error.py +85 -0
  116. zaber_motion-7.13.0/zaber_motion/dto/exceptions/g_code_execution_exception_data.py +75 -0
  117. zaber_motion-7.13.0/zaber_motion/dto/exceptions/g_code_syntax_exception_data.py +75 -0
  118. zaber_motion-7.13.0/zaber_motion/dto/exceptions/invalid_packet_exception_data.py +63 -0
  119. zaber_motion-7.13.0/zaber_motion/dto/exceptions/invalid_pvt_point.py +69 -0
  120. zaber_motion-7.13.0/zaber_motion/dto/exceptions/invalid_response_exception_data.py +51 -0
  121. zaber_motion-7.13.0/zaber_motion/dto/exceptions/movement_failed_exception_data.py +104 -0
  122. zaber_motion-7.13.0/zaber_motion/dto/exceptions/movement_interrupted_exception_data.py +104 -0
  123. zaber_motion-7.13.0/zaber_motion/dto/exceptions/operation_failed_exception_data.py +104 -0
  124. zaber_motion-7.13.0/zaber_motion/dto/exceptions/pvt_execution_exception_data.py +86 -0
  125. zaber_motion-7.13.0/zaber_motion/dto/exceptions/pvt_movement_failed_exception_data.py +69 -0
  126. zaber_motion-7.13.0/zaber_motion/dto/exceptions/pvt_movement_interrupted_exception_data.py +69 -0
  127. zaber_motion-7.13.0/zaber_motion/dto/exceptions/set_device_state_exception_data.py +176 -0
  128. zaber_motion-7.13.0/zaber_motion/dto/exceptions/set_peripheral_state_exception_data.py +121 -0
  129. zaber_motion-7.13.0/zaber_motion/dto/exceptions/stream_execution_exception_data.py +63 -0
  130. zaber_motion-7.13.0/zaber_motion/dto/exceptions/stream_movement_failed_exception_data.py +69 -0
  131. zaber_motion-7.13.0/zaber_motion/dto/exceptions/stream_movement_interrupted_exception_data.py +69 -0
  132. zaber_motion-7.13.0/zaber_motion/dto/firmware_version.py +91 -0
  133. zaber_motion-7.13.0/zaber_motion/dto/gcode/__init__.py +9 -0
  134. zaber_motion-7.13.0/zaber_motion/dto/gcode/axis_definition.py +74 -0
  135. zaber_motion-7.13.0/zaber_motion/dto/gcode/axis_mapping.py +69 -0
  136. zaber_motion-7.13.0/zaber_motion/dto/gcode/axis_transformation.py +79 -0
  137. zaber_motion-7.13.0/zaber_motion/dto/gcode/device_definition.py +99 -0
  138. zaber_motion-7.13.0/zaber_motion/dto/gcode/translate_message.py +87 -0
  139. zaber_motion-7.13.0/zaber_motion/dto/gcode/translate_result.py +79 -0
  140. zaber_motion-7.13.0/zaber_motion/dto/gcode/translator_config.py +84 -0
  141. zaber_motion-7.13.0/zaber_motion/dto/log_output_mode.py +13 -0
  142. zaber_motion-7.13.0/zaber_motion/dto/measurement.py +67 -0
  143. zaber_motion-7.13.0/zaber_motion/dto/microscopy/__init__.py +6 -0
  144. zaber_motion-7.13.0/zaber_motion/dto/microscopy/autofocus_status.py +57 -0
  145. zaber_motion-7.13.0/zaber_motion/dto/microscopy/microscope_config.py +159 -0
  146. zaber_motion-7.13.0/zaber_motion/dto/microscopy/third_party_components.py +55 -0
  147. zaber_motion-7.13.0/zaber_motion/dto/microscopy/wdi_autofocus_provider_status.py +57 -0
  148. zaber_motion-7.13.0/zaber_motion/dto/named_parameter.py +64 -0
  149. zaber_motion-7.13.0/zaber_motion/dto/product/__init__.py +5 -0
  150. zaber_motion-7.13.0/zaber_motion/dto/product/process_controller_mode.py +13 -0
  151. zaber_motion-7.13.0/zaber_motion/dto/product/process_controller_source.py +72 -0
  152. zaber_motion-7.13.0/zaber_motion/dto/product/process_controller_source_sensor.py +11 -0
  153. zaber_motion-7.13.0/zaber_motion/dto/requests/__init__.py +254 -0
  154. zaber_motion-7.13.0/zaber_motion/dto/requests/alert_event_wrapper.py +82 -0
  155. zaber_motion-7.13.0/zaber_motion/dto/requests/autofocus_focus_request.py +131 -0
  156. zaber_motion-7.13.0/zaber_motion/dto/requests/autofocus_get_objective_params_request.py +121 -0
  157. zaber_motion-7.13.0/zaber_motion/dto/requests/autofocus_get_objective_params_response.py +56 -0
  158. zaber_motion-7.13.0/zaber_motion/dto/requests/autofocus_get_status_response.py +50 -0
  159. zaber_motion-7.13.0/zaber_motion/dto/requests/autofocus_set_objective_params_request.py +141 -0
  160. zaber_motion-7.13.0/zaber_motion/dto/requests/axes_empty_request.py +95 -0
  161. zaber_motion-7.13.0/zaber_motion/dto/requests/axes_get_setting_request.py +121 -0
  162. zaber_motion-7.13.0/zaber_motion/dto/requests/axes_move_request.py +114 -0
  163. zaber_motion-7.13.0/zaber_motion/dto/requests/axis_empty_request.py +79 -0
  164. zaber_motion-7.13.0/zaber_motion/dto/requests/axis_move_type.py +12 -0
  165. zaber_motion-7.13.0/zaber_motion/dto/requests/axis_to_string_request.py +88 -0
  166. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_detect_request.py +56 -0
  167. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_detect_response.py +57 -0
  168. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_get_setting_request.py +89 -0
  169. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_home_request.py +88 -0
  170. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_move_request.py +111 -0
  171. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_set_setting_request.py +100 -0
  172. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_device_stop_request.py +88 -0
  173. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_generic_with_units_request.py +122 -0
  174. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_message_collection.py +56 -0
  175. zaber_motion-7.13.0/zaber_motion/dto/requests/binary_reply_only_event_wrapper.py +82 -0
  176. zaber_motion-7.13.0/zaber_motion/dto/requests/bool_response.py +43 -0
  177. zaber_motion-7.13.0/zaber_motion/dto/requests/can_set_state_axis_response.py +60 -0
  178. zaber_motion-7.13.0/zaber_motion/dto/requests/can_set_state_request.py +100 -0
  179. zaber_motion-7.13.0/zaber_motion/dto/requests/channel_on.py +84 -0
  180. zaber_motion-7.13.0/zaber_motion/dto/requests/channel_set_intensity.py +90 -0
  181. zaber_motion-7.13.0/zaber_motion/dto/requests/check_version_request.py +54 -0
  182. zaber_motion-7.13.0/zaber_motion/dto/requests/custom_interface_close_request.py +60 -0
  183. zaber_motion-7.13.0/zaber_motion/dto/requests/custom_interface_open_response.py +51 -0
  184. zaber_motion-7.13.0/zaber_motion/dto/requests/custom_interface_read_request.py +51 -0
  185. zaber_motion-7.13.0/zaber_motion/dto/requests/custom_interface_write_request.py +60 -0
  186. zaber_motion-7.13.0/zaber_motion/dto/requests/device_cancel_all_outputs_schedule_request.py +80 -0
  187. zaber_motion-7.13.0/zaber_motion/dto/requests/device_cancel_output_schedule_request.py +84 -0
  188. zaber_motion-7.13.0/zaber_motion/dto/requests/device_convert_setting_request.py +116 -0
  189. zaber_motion-7.13.0/zaber_motion/dto/requests/device_detect_request.py +68 -0
  190. zaber_motion-7.13.0/zaber_motion/dto/requests/device_detect_response.py +57 -0
  191. zaber_motion-7.13.0/zaber_motion/dto/requests/device_empty_request.py +65 -0
  192. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_all_analog_io_request.py +74 -0
  193. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_all_analog_io_response.py +54 -0
  194. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_all_digital_io_request.py +74 -0
  195. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_all_digital_io_response.py +46 -0
  196. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_analog_io_request.py +88 -0
  197. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_digital_io_request.py +88 -0
  198. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_setting_request.py +100 -0
  199. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_storage_request.py +93 -0
  200. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_warnings_request.py +84 -0
  201. zaber_motion-7.13.0/zaber_motion/dto/requests/device_get_warnings_response.py +51 -0
  202. zaber_motion-7.13.0/zaber_motion/dto/requests/device_home_request.py +84 -0
  203. zaber_motion-7.13.0/zaber_motion/dto/requests/device_identify_request.py +77 -0
  204. zaber_motion-7.13.0/zaber_motion/dto/requests/device_move_request.py +177 -0
  205. zaber_motion-7.13.0/zaber_motion/dto/requests/device_move_sin_request.py +140 -0
  206. zaber_motion-7.13.0/zaber_motion/dto/requests/device_multi_get_setting_request.py +118 -0
  207. zaber_motion-7.13.0/zaber_motion/dto/requests/device_on_all_request.py +56 -0
  208. zaber_motion-7.13.0/zaber_motion/dto/requests/device_on_all_response.py +57 -0
  209. zaber_motion-7.13.0/zaber_motion/dto/requests/device_restore_request.py +84 -0
  210. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_all_analog_outputs_request.py +82 -0
  211. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_all_analog_outputs_schedule_request.py +121 -0
  212. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_all_digital_outputs_request.py +83 -0
  213. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_all_digital_outputs_schedule_request.py +122 -0
  214. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_analog_output_request.py +90 -0
  215. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_analog_output_schedule_request.py +124 -0
  216. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_digital_output_request.py +91 -0
  217. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_digital_output_schedule_request.py +125 -0
  218. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_lowpass_filter_request.py +102 -0
  219. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_setting_bool_request.py +93 -0
  220. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_setting_int_request.py +102 -0
  221. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_setting_request.py +111 -0
  222. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_setting_str_request.py +97 -0
  223. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_storage_bool_request.py +93 -0
  224. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_storage_number_request.py +99 -0
  225. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_storage_request.py +102 -0
  226. zaber_motion-7.13.0/zaber_motion/dto/requests/device_set_unit_conversions_request.py +108 -0
  227. zaber_motion-7.13.0/zaber_motion/dto/requests/device_stop_request.py +84 -0
  228. zaber_motion-7.13.0/zaber_motion/dto/requests/device_storage_list_keys_request.py +88 -0
  229. zaber_motion-7.13.0/zaber_motion/dto/requests/device_storage_request.py +88 -0
  230. zaber_motion-7.13.0/zaber_motion/dto/requests/device_type.py +8 -0
  231. zaber_motion-7.13.0/zaber_motion/dto/requests/device_wait_until_idle_request.py +84 -0
  232. zaber_motion-7.13.0/zaber_motion/dto/requests/disconnected_event.py +101 -0
  233. zaber_motion-7.13.0/zaber_motion/dto/requests/double_array_response.py +54 -0
  234. zaber_motion-7.13.0/zaber_motion/dto/requests/double_response.py +48 -0
  235. zaber_motion-7.13.0/zaber_motion/dto/requests/driver_enable_request.py +90 -0
  236. zaber_motion-7.13.0/zaber_motion/dto/requests/empty_autofocus_request.py +107 -0
  237. zaber_motion-7.13.0/zaber_motion/dto/requests/empty_request.py +38 -0
  238. zaber_motion-7.13.0/zaber_motion/dto/requests/errors.py +68 -0
  239. zaber_motion-7.13.0/zaber_motion/dto/requests/find_device_request.py +65 -0
  240. zaber_motion-7.13.0/zaber_motion/dto/requests/find_device_response.py +51 -0
  241. zaber_motion-7.13.0/zaber_motion/dto/requests/forget_devices_request.py +71 -0
  242. zaber_motion-7.13.0/zaber_motion/dto/requests/gateway_event.py +45 -0
  243. zaber_motion-7.13.0/zaber_motion/dto/requests/gateway_request.py +45 -0
  244. zaber_motion-7.13.0/zaber_motion/dto/requests/gateway_response.py +69 -0
  245. zaber_motion-7.13.0/zaber_motion/dto/requests/generic_binary_request.py +107 -0
  246. zaber_motion-7.13.0/zaber_motion/dto/requests/generic_command_request.py +107 -0
  247. zaber_motion-7.13.0/zaber_motion/dto/requests/generic_command_response_collection.py +56 -0
  248. zaber_motion-7.13.0/zaber_motion/dto/requests/get_all_io_port_labels_response.py +56 -0
  249. zaber_motion-7.13.0/zaber_motion/dto/requests/get_axis_setting_results.py +56 -0
  250. zaber_motion-7.13.0/zaber_motion/dto/requests/get_io_port_label_request.py +91 -0
  251. zaber_motion-7.13.0/zaber_motion/dto/requests/get_setting_results.py +56 -0
  252. zaber_motion-7.13.0/zaber_motion/dto/requests/get_simple_tuning_param_definition_response.py +56 -0
  253. zaber_motion-7.13.0/zaber_motion/dto/requests/int_64_response.py +51 -0
  254. zaber_motion-7.13.0/zaber_motion/dto/requests/int_array_response.py +57 -0
  255. zaber_motion-7.13.0/zaber_motion/dto/requests/int_request.py +51 -0
  256. zaber_motion-7.13.0/zaber_motion/dto/requests/int_response.py +51 -0
  257. zaber_motion-7.13.0/zaber_motion/dto/requests/interface_empty_request.py +51 -0
  258. zaber_motion-7.13.0/zaber_motion/dto/requests/interface_type.py +11 -0
  259. zaber_motion-7.13.0/zaber_motion/dto/requests/load_paramset.py +102 -0
  260. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_disable_request.py +84 -0
  261. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_empty_request.py +79 -0
  262. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_enable_request.py +99 -0
  263. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_get_axis_numbers_response.py +57 -0
  264. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_get_request.py +91 -0
  265. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_home_request.py +84 -0
  266. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_move_request.py +163 -0
  267. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_move_sin_request.py +140 -0
  268. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_set_request.py +116 -0
  269. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_stop_request.py +84 -0
  270. zaber_motion-7.13.0/zaber_motion/dto/requests/lockstep_wait_until_idle_request.py +84 -0
  271. zaber_motion-7.13.0/zaber_motion/dto/requests/microscope_config_response.py +50 -0
  272. zaber_motion-7.13.0/zaber_motion/dto/requests/microscope_empty_request.py +65 -0
  273. zaber_motion-7.13.0/zaber_motion/dto/requests/microscope_find_request.py +63 -0
  274. zaber_motion-7.13.0/zaber_motion/dto/requests/microscope_init_request.py +70 -0
  275. zaber_motion-7.13.0/zaber_motion/dto/requests/microscope_trigger_camera_request.py +107 -0
  276. zaber_motion-7.13.0/zaber_motion/dto/requests/objective_changer_change_request.py +119 -0
  277. zaber_motion-7.13.0/zaber_motion/dto/requests/objective_changer_create_response.py +79 -0
  278. zaber_motion-7.13.0/zaber_motion/dto/requests/objective_changer_get_current_response.py +51 -0
  279. zaber_motion-7.13.0/zaber_motion/dto/requests/objective_changer_request.py +93 -0
  280. zaber_motion-7.13.0/zaber_motion/dto/requests/objective_changer_set_request.py +116 -0
  281. zaber_motion-7.13.0/zaber_motion/dto/requests/open_binary_interface_request.py +100 -0
  282. zaber_motion-7.13.0/zaber_motion/dto/requests/open_interface_request.py +159 -0
  283. zaber_motion-7.13.0/zaber_motion/dto/requests/open_interface_response.py +51 -0
  284. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_add_io_channel_request.py +91 -0
  285. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_add_setting_channel_request.py +88 -0
  286. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_data_get_request.py +63 -0
  287. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_data_get_sample_time_request.py +77 -0
  288. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_data_get_samples_response.py +54 -0
  289. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_data_identifier.py +51 -0
  290. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_read_response.py +57 -0
  291. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_request.py +65 -0
  292. zaber_motion-7.13.0/zaber_motion/dto/requests/oscilloscope_start_request.py +79 -0
  293. zaber_motion-7.13.0/zaber_motion/dto/requests/prepare_command_request.py +108 -0
  294. zaber_motion-7.13.0/zaber_motion/dto/requests/process_on.py +107 -0
  295. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_buffer_get_sequence_data_request.py +79 -0
  296. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_csv_request.py +59 -0
  297. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_generate_positions_request.py +74 -0
  298. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_generate_velocities_and_times_request.py +96 -0
  299. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_generate_velocities_request.py +93 -0
  300. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_load_csv_request.py +45 -0
  301. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_point_request.py +145 -0
  302. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_points_request.py +147 -0
  303. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_save_csv_request.py +74 -0
  304. zaber_motion-7.13.0/zaber_motion/dto/requests/pvt_submit_sequence_data_request.py +93 -0
  305. zaber_motion-7.13.0/zaber_motion/dto/requests/renumber_request.py +79 -0
  306. zaber_motion-7.13.0/zaber_motion/dto/requests/response_type.py +8 -0
  307. zaber_motion-7.13.0/zaber_motion/dto/requests/servo_tuning_paramset_response.py +48 -0
  308. zaber_motion-7.13.0/zaber_motion/dto/requests/servo_tuning_request.py +91 -0
  309. zaber_motion-7.13.0/zaber_motion/dto/requests/set_device_db_layered_sources_request.py +56 -0
  310. zaber_motion-7.13.0/zaber_motion/dto/requests/set_device_db_source_request.py +63 -0
  311. zaber_motion-7.13.0/zaber_motion/dto/requests/set_interface_checksum_enabled_request.py +56 -0
  312. zaber_motion-7.13.0/zaber_motion/dto/requests/set_interface_timeout_request.py +65 -0
  313. zaber_motion-7.13.0/zaber_motion/dto/requests/set_internal_mode_request.py +43 -0
  314. zaber_motion-7.13.0/zaber_motion/dto/requests/set_io_port_label_request.py +100 -0
  315. zaber_motion-7.13.0/zaber_motion/dto/requests/set_log_output_request.py +57 -0
  316. zaber_motion-7.13.0/zaber_motion/dto/requests/set_process_controller_source.py +93 -0
  317. zaber_motion-7.13.0/zaber_motion/dto/requests/set_servo_tuning_pid_request.py +135 -0
  318. zaber_motion-7.13.0/zaber_motion/dto/requests/set_servo_tuning_request.py +116 -0
  319. zaber_motion-7.13.0/zaber_motion/dto/requests/set_simple_tuning.py +174 -0
  320. zaber_motion-7.13.0/zaber_motion/dto/requests/set_state_request.py +93 -0
  321. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_arc_request.py +199 -0
  322. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_buffer_erase_request.py +84 -0
  323. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_buffer_get_content_request.py +84 -0
  324. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_buffer_get_content_response.py +51 -0
  325. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_buffer_list.py +70 -0
  326. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_call_request.py +112 -0
  327. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_cancel_all_outputs_schedule_request.py +99 -0
  328. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_cancel_output_schedule_request.py +103 -0
  329. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_circle_request.py +155 -0
  330. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_empty_request.py +84 -0
  331. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_generic_command_batch_request.py +99 -0
  332. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_generic_command_request.py +93 -0
  333. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_get_axes_response.py +75 -0
  334. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_get_max_centripetal_acceleration_request.py +96 -0
  335. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_get_max_speed_request.py +96 -0
  336. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_get_max_tangential_acceleration_request.py +96 -0
  337. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_line_request.py +135 -0
  338. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_mode_response.py +60 -0
  339. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_segment_type.py +8 -0
  340. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_all_analog_outputs_request.py +101 -0
  341. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_all_analog_outputs_schedule_request.py +140 -0
  342. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_all_digital_outputs_request.py +102 -0
  343. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_all_digital_outputs_schedule_request.py +141 -0
  344. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_analog_output_request.py +109 -0
  345. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_analog_output_schedule_request.py +143 -0
  346. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_digital_output_request.py +110 -0
  347. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_digital_output_schedule_request.py +144 -0
  348. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_hold_request.py +89 -0
  349. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_max_centripetal_acceleration_request.py +107 -0
  350. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_max_speed_request.py +107 -0
  351. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_set_max_tangential_acceleration_request.py +107 -0
  352. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_setup_live_composite_request.py +123 -0
  353. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_setup_live_request.py +104 -0
  354. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_setup_store_arbitrary_axes_request.py +126 -0
  355. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_setup_store_composite_request.py +151 -0
  356. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_setup_store_request.py +132 -0
  357. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_wait_analog_input_request.py +118 -0
  358. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_wait_digital_input_request.py +103 -0
  359. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_wait_request.py +107 -0
  360. zaber_motion-7.13.0/zaber_motion/dto/requests/stream_wait_until_idle_request.py +89 -0
  361. zaber_motion-7.13.0/zaber_motion/dto/requests/string_array_response.py +51 -0
  362. zaber_motion-7.13.0/zaber_motion/dto/requests/string_response.py +45 -0
  363. zaber_motion-7.13.0/zaber_motion/dto/requests/test_event.py +45 -0
  364. zaber_motion-7.13.0/zaber_motion/dto/requests/test_request.py +55 -0
  365. zaber_motion-7.13.0/zaber_motion/dto/requests/test_response.py +45 -0
  366. zaber_motion-7.13.0/zaber_motion/dto/requests/test_response_long.py +51 -0
  367. zaber_motion-7.13.0/zaber_motion/dto/requests/toggle_device_db_store_request.py +50 -0
  368. zaber_motion-7.13.0/zaber_motion/dto/requests/tools_list_serial_ports_response.py +51 -0
  369. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_create_from_device_request.py +97 -0
  370. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_create_live_request.py +91 -0
  371. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_create_request.py +62 -0
  372. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_create_response.py +51 -0
  373. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_empty_request.py +51 -0
  374. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_flush_live_request.py +56 -0
  375. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_flush_response.py +51 -0
  376. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_get_axis_offset_request.py +81 -0
  377. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_get_axis_position_request.py +72 -0
  378. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_set_axis_position_request.py +83 -0
  379. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_set_feed_rate_override_request.py +62 -0
  380. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_set_traverse_rate_request.py +74 -0
  381. zaber_motion-7.13.0/zaber_motion/dto/requests/translator_translate_request.py +60 -0
  382. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_clear_action_request.py +91 -0
  383. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_empty_request.py +79 -0
  384. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_enable_request.py +93 -0
  385. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_enabled_states.py +56 -0
  386. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_fire_at_interval_request.py +102 -0
  387. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_fire_when_distance_travelled_request.py +116 -0
  388. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_fire_when_io_request.py +128 -0
  389. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_fire_when_request.py +88 -0
  390. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_fire_when_setting_request.py +137 -0
  391. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_on_fire_request.py +114 -0
  392. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_on_fire_set_request.py +149 -0
  393. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_on_fire_set_to_setting_request.py +149 -0
  394. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_set_label_request.py +88 -0
  395. zaber_motion-7.13.0/zaber_motion/dto/requests/trigger_states.py +56 -0
  396. zaber_motion-7.13.0/zaber_motion/dto/requests/unit_convert_unit_request.py +71 -0
  397. zaber_motion-7.13.0/zaber_motion/dto/requests/unit_get_enum_request.py +45 -0
  398. zaber_motion-7.13.0/zaber_motion/dto/requests/unit_get_enum_response.py +48 -0
  399. zaber_motion-7.13.0/zaber_motion/dto/requests/unit_get_symbol_request.py +48 -0
  400. zaber_motion-7.13.0/zaber_motion/dto/requests/unit_get_symbol_response.py +45 -0
  401. zaber_motion-7.13.0/zaber_motion/dto/requests/unknown_binary_response_event_wrapper.py +82 -0
  402. zaber_motion-7.13.0/zaber_motion/dto/requests/unknown_response_event_wrapper.py +82 -0
  403. zaber_motion-7.13.0/zaber_motion/dto/requests/wait_to_clear_warnings_request.py +105 -0
  404. zaber_motion-7.13.0/zaber_motion/dto/requests/wait_to_respond_request.py +76 -0
  405. zaber_motion-7.13.0/zaber_motion/dto/requests/wdi_generic_request.py +136 -0
  406. zaber_motion-7.13.0/zaber_motion/dto/requests/wdi_get_status_response.py +50 -0
  407. zaber_motion-7.13.0/zaber_motion/dto/rotation_direction.py +13 -0
  408. zaber_motion-7.13.0/zaber_motion/dto_object.py +18 -0
  409. zaber_motion-7.13.0/zaber_motion/events.py +112 -0
  410. zaber_motion-7.13.0/zaber_motion/exceptions/__init__.py +87 -0
  411. zaber_motion-7.13.0/zaber_motion/exceptions/bad_command_exception.py +10 -0
  412. zaber_motion-7.13.0/zaber_motion/exceptions/bad_data_exception.py +10 -0
  413. zaber_motion-7.13.0/zaber_motion/exceptions/binary_command_failed_exception.py +27 -0
  414. zaber_motion-7.13.0/zaber_motion/exceptions/command_failed_exception.py +27 -0
  415. zaber_motion-7.13.0/zaber_motion/exceptions/command_preempted_exception.py +10 -0
  416. zaber_motion-7.13.0/zaber_motion/exceptions/command_too_long_exception.py +27 -0
  417. zaber_motion-7.13.0/zaber_motion/exceptions/connection_closed_exception.py +10 -0
  418. zaber_motion-7.13.0/zaber_motion/exceptions/connection_failed_exception.py +10 -0
  419. zaber_motion-7.13.0/zaber_motion/exceptions/conversion_failed_exception.py +10 -0
  420. zaber_motion-7.13.0/zaber_motion/exceptions/device_address_conflict_exception.py +27 -0
  421. zaber_motion-7.13.0/zaber_motion/exceptions/device_busy_exception.py +10 -0
  422. zaber_motion-7.13.0/zaber_motion/exceptions/device_db_failed_exception.py +27 -0
  423. zaber_motion-7.13.0/zaber_motion/exceptions/device_detection_failed_exception.py +10 -0
  424. zaber_motion-7.13.0/zaber_motion/exceptions/device_failed_exception.py +11 -0
  425. zaber_motion-7.13.0/zaber_motion/exceptions/device_not_identified_exception.py +10 -0
  426. zaber_motion-7.13.0/zaber_motion/exceptions/driver_disabled_exception.py +10 -0
  427. zaber_motion-7.13.0/zaber_motion/exceptions/g_code_execution_exception.py +27 -0
  428. zaber_motion-7.13.0/zaber_motion/exceptions/g_code_syntax_exception.py +27 -0
  429. zaber_motion-7.13.0/zaber_motion/exceptions/incompatible_shared_library_exception.py +11 -0
  430. zaber_motion-7.13.0/zaber_motion/exceptions/internal_error_exception.py +10 -0
  431. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_argument_exception.py +10 -0
  432. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_csv_data_exception.py +10 -0
  433. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_data_exception.py +10 -0
  434. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_operation_exception.py +10 -0
  435. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_packet_exception.py +27 -0
  436. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_park_state_exception.py +10 -0
  437. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_request_data_exception.py +11 -0
  438. zaber_motion-7.13.0/zaber_motion/exceptions/invalid_response_exception.py +27 -0
  439. zaber_motion-7.13.0/zaber_motion/exceptions/io_channel_out_of_range_exception.py +10 -0
  440. zaber_motion-7.13.0/zaber_motion/exceptions/io_failed_exception.py +10 -0
  441. zaber_motion-7.13.0/zaber_motion/exceptions/lockstep_enabled_exception.py +10 -0
  442. zaber_motion-7.13.0/zaber_motion/exceptions/lockstep_not_enabled_exception.py +10 -0
  443. zaber_motion-7.13.0/zaber_motion/exceptions/motion_lib_exception.py +18 -0
  444. zaber_motion-7.13.0/zaber_motion/exceptions/movement_failed_exception.py +27 -0
  445. zaber_motion-7.13.0/zaber_motion/exceptions/movement_interrupted_exception.py +27 -0
  446. zaber_motion-7.13.0/zaber_motion/exceptions/no_device_found_exception.py +10 -0
  447. zaber_motion-7.13.0/zaber_motion/exceptions/no_value_for_key_exception.py +10 -0
  448. zaber_motion-7.13.0/zaber_motion/exceptions/not_supported_exception.py +10 -0
  449. zaber_motion-7.13.0/zaber_motion/exceptions/operation_failed_exception.py +27 -0
  450. zaber_motion-7.13.0/zaber_motion/exceptions/os_failed_exception.py +10 -0
  451. zaber_motion-7.13.0/zaber_motion/exceptions/out_of_request_ids_exception.py +10 -0
  452. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_discontinuity_exception.py +10 -0
  453. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_execution_exception.py +27 -0
  454. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_mode_exception.py +10 -0
  455. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_movement_failed_exception.py +27 -0
  456. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_movement_interrupted_exception.py +27 -0
  457. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_sequence_generation_failed_exception.py +10 -0
  458. zaber_motion-7.13.0/zaber_motion/exceptions/pvt_setup_failed_exception.py +10 -0
  459. zaber_motion-7.13.0/zaber_motion/exceptions/remote_mode_exception.py +11 -0
  460. zaber_motion-7.13.0/zaber_motion/exceptions/request_timeout_exception.py +10 -0
  461. zaber_motion-7.13.0/zaber_motion/exceptions/serial_port_busy_exception.py +10 -0
  462. zaber_motion-7.13.0/zaber_motion/exceptions/set_device_state_failed_exception.py +27 -0
  463. zaber_motion-7.13.0/zaber_motion/exceptions/set_peripheral_state_failed_exception.py +27 -0
  464. zaber_motion-7.13.0/zaber_motion/exceptions/setting_not_found_exception.py +10 -0
  465. zaber_motion-7.13.0/zaber_motion/exceptions/stream_discontinuity_exception.py +10 -0
  466. zaber_motion-7.13.0/zaber_motion/exceptions/stream_execution_exception.py +27 -0
  467. zaber_motion-7.13.0/zaber_motion/exceptions/stream_mode_exception.py +10 -0
  468. zaber_motion-7.13.0/zaber_motion/exceptions/stream_movement_failed_exception.py +27 -0
  469. zaber_motion-7.13.0/zaber_motion/exceptions/stream_movement_interrupted_exception.py +27 -0
  470. zaber_motion-7.13.0/zaber_motion/exceptions/stream_setup_failed_exception.py +10 -0
  471. zaber_motion-7.13.0/zaber_motion/exceptions/timeout_exception.py +10 -0
  472. zaber_motion-7.13.0/zaber_motion/exceptions/transport_already_used_exception.py +10 -0
  473. zaber_motion-7.13.0/zaber_motion/exceptions/unknown_request_exception.py +10 -0
  474. zaber_motion-7.13.0/zaber_motion/gcode/__init__.py +11 -0
  475. zaber_motion-7.13.0/zaber_motion/gcode/offline_translator.py +401 -0
  476. zaber_motion-7.13.0/zaber_motion/gcode/translator.py +424 -0
  477. zaber_motion-7.13.0/zaber_motion/library.py +179 -0
  478. zaber_motion-7.13.0/zaber_motion/microscopy/__init__.py +14 -0
  479. zaber_motion-7.13.0/zaber_motion/microscopy/autofocus.py +645 -0
  480. zaber_motion-7.13.0/zaber_motion/microscopy/camera_trigger.py +108 -0
  481. zaber_motion-7.13.0/zaber_motion/microscopy/filter_changer.py +167 -0
  482. zaber_motion-7.13.0/zaber_motion/microscopy/illuminator.py +139 -0
  483. zaber_motion-7.13.0/zaber_motion/microscopy/illuminator_channel.py +616 -0
  484. zaber_motion-7.13.0/zaber_motion/microscopy/microscope.py +315 -0
  485. zaber_motion-7.13.0/zaber_motion/microscopy/objective_changer.py +403 -0
  486. zaber_motion-7.13.0/zaber_motion/microscopy/wdi_autofocus_provider.py +396 -0
  487. zaber_motion-7.13.0/zaber_motion/product/__init__.py +7 -0
  488. zaber_motion-7.13.0/zaber_motion/product/process.py +818 -0
  489. zaber_motion-7.13.0/zaber_motion/product/process_controller.py +134 -0
  490. zaber_motion-7.13.0/zaber_motion/serialization.py +32 -0
  491. zaber_motion-7.13.0/zaber_motion/tools.py +78 -0
  492. zaber_motion-7.13.0/zaber_motion/unit_table.py +86 -0
  493. zaber_motion-7.13.0/zaber_motion/units.py +206 -0
  494. zaber_motion-7.13.0/zaber_motion/version.py +1 -0
  495. zaber_motion-7.13.0/zaber_motion.egg-info/PKG-INFO +2150 -0
  496. zaber_motion-7.13.0/zaber_motion.egg-info/SOURCES.txt +499 -0
  497. zaber_motion-7.11.0/LICENSE.txt +0 -2119
  498. zaber_motion-7.11.0/MANIFEST.in +0 -4
  499. zaber_motion-7.11.0/PKG-INFO +0 -2151
  500. zaber_motion-7.11.0/README.md +0 -9
  501. zaber_motion-7.11.0/pyproject.toml +0 -52
  502. zaber_motion-7.11.0/setup.cfg +0 -8
  503. zaber_motion-7.11.0/setup.py +0 -47
  504. zaber_motion-7.11.0/zaber_bson/LICENSE +0 -25
  505. zaber_motion-7.11.0/zaber_bson/__init__.py +0 -48
  506. zaber_motion-7.11.0/zaber_bson/codec.py +0 -400
  507. zaber_motion-7.11.0/zaber_bson/types.py +0 -49
  508. zaber_motion-7.11.0/zaber_motion/__init__.py +0 -103
  509. zaber_motion-7.11.0/zaber_motion/ascii/__init__.py +0 -73
  510. zaber_motion-7.11.0/zaber_motion/ascii/all_axes.py +0 -352
  511. zaber_motion-7.11.0/zaber_motion/ascii/axis.py +0 -1666
  512. zaber_motion-7.11.0/zaber_motion/ascii/axis_group.py +0 -391
  513. zaber_motion-7.11.0/zaber_motion/ascii/axis_settings.py +0 -752
  514. zaber_motion-7.11.0/zaber_motion/ascii/connection.py +0 -1174
  515. zaber_motion-7.11.0/zaber_motion/ascii/device.py +0 -908
  516. zaber_motion-7.11.0/zaber_motion/ascii/device_io.py +0 -1170
  517. zaber_motion-7.11.0/zaber_motion/ascii/device_settings.py +0 -735
  518. zaber_motion-7.11.0/zaber_motion/ascii/lockstep.py +0 -1184
  519. zaber_motion-7.11.0/zaber_motion/ascii/oscilloscope.py +0 -635
  520. zaber_motion-7.11.0/zaber_motion/ascii/oscilloscope_data.py +0 -240
  521. zaber_motion-7.11.0/zaber_motion/ascii/pvt.py +0 -105
  522. zaber_motion-7.11.0/zaber_motion/ascii/pvt_buffer.py +0 -105
  523. zaber_motion-7.11.0/zaber_motion/ascii/pvt_io.py +0 -630
  524. zaber_motion-7.11.0/zaber_motion/ascii/pvt_sequence.py +0 -1384
  525. zaber_motion-7.11.0/zaber_motion/ascii/servo_tuner.py +0 -637
  526. zaber_motion-7.11.0/zaber_motion/ascii/setting_constants.py +0 -1755
  527. zaber_motion-7.11.0/zaber_motion/ascii/storage.py +0 -905
  528. zaber_motion-7.11.0/zaber_motion/ascii/stream.py +0 -2182
  529. zaber_motion-7.11.0/zaber_motion/ascii/stream_buffer.py +0 -101
  530. zaber_motion-7.11.0/zaber_motion/ascii/stream_io.py +0 -700
  531. zaber_motion-7.11.0/zaber_motion/ascii/streams.py +0 -105
  532. zaber_motion-7.11.0/zaber_motion/ascii/transport.py +0 -202
  533. zaber_motion-7.11.0/zaber_motion/ascii/trigger.py +0 -886
  534. zaber_motion-7.11.0/zaber_motion/ascii/triggers.py +0 -241
  535. zaber_motion-7.11.0/zaber_motion/ascii/warning_flags.py +0 -178
  536. zaber_motion-7.11.0/zaber_motion/ascii/warnings.py +0 -152
  537. zaber_motion-7.11.0/zaber_motion/async_utils.py +0 -46
  538. zaber_motion-7.11.0/zaber_motion/binary/__init__.py +0 -14
  539. zaber_motion-7.11.0/zaber_motion/binary/connection.py +0 -648
  540. zaber_motion-7.11.0/zaber_motion/binary/device.py +0 -924
  541. zaber_motion-7.11.0/zaber_motion/binary/device_settings.py +0 -121
  542. zaber_motion-7.11.0/zaber_motion/bindings.py +0 -50
  543. zaber_motion-7.11.0/zaber_motion/call.py +0 -198
  544. zaber_motion-7.11.0/zaber_motion/convert_exception.py +0 -138
  545. zaber_motion-7.11.0/zaber_motion/dto/__init__.py +0 -11
  546. zaber_motion-7.11.0/zaber_motion/dto/ascii/__init__.py +0 -46
  547. zaber_motion-7.11.0/zaber_motion/dto/ascii/alert_event.py +0 -110
  548. zaber_motion-7.11.0/zaber_motion/dto/ascii/axis_identity.py +0 -117
  549. zaber_motion-7.11.0/zaber_motion/dto/ascii/axis_type.py +0 -14
  550. zaber_motion-7.11.0/zaber_motion/dto/ascii/can_set_state_axis_response.py +0 -69
  551. zaber_motion-7.11.0/zaber_motion/dto/ascii/can_set_state_device_response.py +0 -75
  552. zaber_motion-7.11.0/zaber_motion/dto/ascii/conversion_factor.py +0 -81
  553. zaber_motion-7.11.0/zaber_motion/dto/ascii/device_identity.py +0 -136
  554. zaber_motion-7.11.0/zaber_motion/dto/ascii/device_io_info.py +0 -108
  555. zaber_motion-7.11.0/zaber_motion/dto/ascii/digital_output_action.py +0 -13
  556. zaber_motion-7.11.0/zaber_motion/dto/ascii/get_axis_setting.py +0 -64
  557. zaber_motion-7.11.0/zaber_motion/dto/ascii/get_axis_setting_result.py +0 -81
  558. zaber_motion-7.11.0/zaber_motion/dto/ascii/get_setting.py +0 -88
  559. zaber_motion-7.11.0/zaber_motion/dto/ascii/get_setting_result.py +0 -87
  560. zaber_motion-7.11.0/zaber_motion/dto/ascii/io_port_label.py +0 -84
  561. zaber_motion-7.11.0/zaber_motion/dto/ascii/io_port_type.py +0 -14
  562. zaber_motion-7.11.0/zaber_motion/dto/ascii/lockstep_axes.py +0 -108
  563. zaber_motion-7.11.0/zaber_motion/dto/ascii/measurement_sequence.py +0 -73
  564. zaber_motion-7.11.0/zaber_motion/dto/ascii/message_type.py +0 -14
  565. zaber_motion-7.11.0/zaber_motion/dto/ascii/optional_measurement_sequence.py +0 -71
  566. zaber_motion-7.11.0/zaber_motion/dto/ascii/oscilloscope_capture_properties.py +0 -116
  567. zaber_motion-7.11.0/zaber_motion/dto/ascii/oscilloscope_data_source.py +0 -11
  568. zaber_motion-7.11.0/zaber_motion/dto/ascii/paramset_info.py +0 -92
  569. zaber_motion-7.11.0/zaber_motion/dto/ascii/pid_tuning.py +0 -125
  570. zaber_motion-7.11.0/zaber_motion/dto/ascii/pvt_axis_definition.py +0 -70
  571. zaber_motion-7.11.0/zaber_motion/dto/ascii/pvt_axis_type.py +0 -11
  572. zaber_motion-7.11.0/zaber_motion/dto/ascii/pvt_csv_data.py +0 -75
  573. zaber_motion-7.11.0/zaber_motion/dto/ascii/pvt_mode.py +0 -12
  574. zaber_motion-7.11.0/zaber_motion/dto/ascii/pvt_sequence_data.py +0 -99
  575. zaber_motion-7.11.0/zaber_motion/dto/ascii/response.py +0 -137
  576. zaber_motion-7.11.0/zaber_motion/dto/ascii/servo_tuning_param.py +0 -66
  577. zaber_motion-7.11.0/zaber_motion/dto/ascii/servo_tuning_paramset.py +0 -21
  578. zaber_motion-7.11.0/zaber_motion/dto/ascii/set_state_axis_response.py +0 -75
  579. zaber_motion-7.11.0/zaber_motion/dto/ascii/set_state_device_response.py +0 -80
  580. zaber_motion-7.11.0/zaber_motion/dto/ascii/simple_tuning.py +0 -118
  581. zaber_motion-7.11.0/zaber_motion/dto/ascii/simple_tuning_param_definition.py +0 -100
  582. zaber_motion-7.11.0/zaber_motion/dto/ascii/stream_axis_definition.py +0 -70
  583. zaber_motion-7.11.0/zaber_motion/dto/ascii/stream_axis_type.py +0 -11
  584. zaber_motion-7.11.0/zaber_motion/dto/ascii/stream_mode.py +0 -13
  585. zaber_motion-7.11.0/zaber_motion/dto/ascii/trigger_action.py +0 -12
  586. zaber_motion-7.11.0/zaber_motion/dto/ascii/trigger_condition.py +0 -15
  587. zaber_motion-7.11.0/zaber_motion/dto/ascii/trigger_enabled_state.py +0 -68
  588. zaber_motion-7.11.0/zaber_motion/dto/ascii/trigger_operation.py +0 -12
  589. zaber_motion-7.11.0/zaber_motion/dto/ascii/trigger_state.py +0 -114
  590. zaber_motion-7.11.0/zaber_motion/dto/ascii/unknown_response_event.py +0 -137
  591. zaber_motion-7.11.0/zaber_motion/dto/axis_address.py +0 -74
  592. zaber_motion-7.11.0/zaber_motion/dto/binary/__init__.py +0 -11
  593. zaber_motion-7.11.0/zaber_motion/dto/binary/binary_settings.py +0 -74
  594. zaber_motion-7.11.0/zaber_motion/dto/binary/command_code.py +0 -106
  595. zaber_motion-7.11.0/zaber_motion/dto/binary/device_identity.py +0 -156
  596. zaber_motion-7.11.0/zaber_motion/dto/binary/device_type.py +0 -12
  597. zaber_motion-7.11.0/zaber_motion/dto/binary/error_code.py +0 -101
  598. zaber_motion-7.11.0/zaber_motion/dto/binary/message.py +0 -91
  599. zaber_motion-7.11.0/zaber_motion/dto/binary/reply_code.py +0 -16
  600. zaber_motion-7.11.0/zaber_motion/dto/binary/reply_only_event.py +0 -91
  601. zaber_motion-7.11.0/zaber_motion/dto/binary/unknown_response_event.py +0 -91
  602. zaber_motion-7.11.0/zaber_motion/dto/channel_address.py +0 -74
  603. zaber_motion-7.11.0/zaber_motion/dto/device_db_source.py +0 -66
  604. zaber_motion-7.11.0/zaber_motion/dto/device_db_source_type.py +0 -11
  605. zaber_motion-7.11.0/zaber_motion/dto/exceptions/__init__.py +0 -24
  606. zaber_motion-7.11.0/zaber_motion/dto/exceptions/binary_command_failed_exception_data.py +0 -57
  607. zaber_motion-7.11.0/zaber_motion/dto/exceptions/command_failed_exception_data.py +0 -151
  608. zaber_motion-7.11.0/zaber_motion/dto/exceptions/command_too_long_exception_data.py +0 -98
  609. zaber_motion-7.11.0/zaber_motion/dto/exceptions/device_address_conflict_exception_data.py +0 -63
  610. zaber_motion-7.11.0/zaber_motion/dto/exceptions/device_db_failed_exception_data.py +0 -74
  611. zaber_motion-7.11.0/zaber_motion/dto/exceptions/device_db_inner_error.py +0 -85
  612. zaber_motion-7.11.0/zaber_motion/dto/exceptions/g_code_execution_exception_data.py +0 -75
  613. zaber_motion-7.11.0/zaber_motion/dto/exceptions/g_code_syntax_exception_data.py +0 -75
  614. zaber_motion-7.11.0/zaber_motion/dto/exceptions/invalid_packet_exception_data.py +0 -63
  615. zaber_motion-7.11.0/zaber_motion/dto/exceptions/invalid_pvt_point.py +0 -69
  616. zaber_motion-7.11.0/zaber_motion/dto/exceptions/invalid_response_exception_data.py +0 -51
  617. zaber_motion-7.11.0/zaber_motion/dto/exceptions/movement_failed_exception_data.py +0 -104
  618. zaber_motion-7.11.0/zaber_motion/dto/exceptions/movement_interrupted_exception_data.py +0 -104
  619. zaber_motion-7.11.0/zaber_motion/dto/exceptions/operation_failed_exception_data.py +0 -104
  620. zaber_motion-7.11.0/zaber_motion/dto/exceptions/pvt_execution_exception_data.py +0 -86
  621. zaber_motion-7.11.0/zaber_motion/dto/exceptions/pvt_movement_failed_exception_data.py +0 -69
  622. zaber_motion-7.11.0/zaber_motion/dto/exceptions/pvt_movement_interrupted_exception_data.py +0 -69
  623. zaber_motion-7.11.0/zaber_motion/dto/exceptions/set_device_state_exception_data.py +0 -176
  624. zaber_motion-7.11.0/zaber_motion/dto/exceptions/set_peripheral_state_exception_data.py +0 -121
  625. zaber_motion-7.11.0/zaber_motion/dto/exceptions/stream_execution_exception_data.py +0 -63
  626. zaber_motion-7.11.0/zaber_motion/dto/exceptions/stream_movement_failed_exception_data.py +0 -69
  627. zaber_motion-7.11.0/zaber_motion/dto/exceptions/stream_movement_interrupted_exception_data.py +0 -69
  628. zaber_motion-7.11.0/zaber_motion/dto/firmware_version.py +0 -91
  629. zaber_motion-7.11.0/zaber_motion/dto/gcode/__init__.py +0 -9
  630. zaber_motion-7.11.0/zaber_motion/dto/gcode/axis_definition.py +0 -74
  631. zaber_motion-7.11.0/zaber_motion/dto/gcode/axis_mapping.py +0 -69
  632. zaber_motion-7.11.0/zaber_motion/dto/gcode/axis_transformation.py +0 -79
  633. zaber_motion-7.11.0/zaber_motion/dto/gcode/device_definition.py +0 -99
  634. zaber_motion-7.11.0/zaber_motion/dto/gcode/translate_message.py +0 -87
  635. zaber_motion-7.11.0/zaber_motion/dto/gcode/translate_result.py +0 -79
  636. zaber_motion-7.11.0/zaber_motion/dto/gcode/translator_config.py +0 -84
  637. zaber_motion-7.11.0/zaber_motion/dto/log_output_mode.py +0 -13
  638. zaber_motion-7.11.0/zaber_motion/dto/measurement.py +0 -67
  639. zaber_motion-7.11.0/zaber_motion/dto/microscopy/__init__.py +0 -6
  640. zaber_motion-7.11.0/zaber_motion/dto/microscopy/autofocus_status.py +0 -57
  641. zaber_motion-7.11.0/zaber_motion/dto/microscopy/microscope_config.py +0 -159
  642. zaber_motion-7.11.0/zaber_motion/dto/microscopy/third_party_components.py +0 -55
  643. zaber_motion-7.11.0/zaber_motion/dto/microscopy/wdi_autofocus_provider_status.py +0 -57
  644. zaber_motion-7.11.0/zaber_motion/dto/named_parameter.py +0 -64
  645. zaber_motion-7.11.0/zaber_motion/dto/product/__init__.py +0 -5
  646. zaber_motion-7.11.0/zaber_motion/dto/product/process_controller_mode.py +0 -13
  647. zaber_motion-7.11.0/zaber_motion/dto/product/process_controller_source.py +0 -72
  648. zaber_motion-7.11.0/zaber_motion/dto/product/process_controller_source_sensor.py +0 -11
  649. zaber_motion-7.11.0/zaber_motion/dto/requests/__init__.py +0 -251
  650. zaber_motion-7.11.0/zaber_motion/dto/requests/alert_event_wrapper.py +0 -82
  651. zaber_motion-7.11.0/zaber_motion/dto/requests/autofocus_focus_request.py +0 -131
  652. zaber_motion-7.11.0/zaber_motion/dto/requests/autofocus_get_objective_params_request.py +0 -121
  653. zaber_motion-7.11.0/zaber_motion/dto/requests/autofocus_get_objective_params_response.py +0 -56
  654. zaber_motion-7.11.0/zaber_motion/dto/requests/autofocus_get_status_response.py +0 -50
  655. zaber_motion-7.11.0/zaber_motion/dto/requests/autofocus_set_objective_params_request.py +0 -141
  656. zaber_motion-7.11.0/zaber_motion/dto/requests/axes_empty_request.py +0 -95
  657. zaber_motion-7.11.0/zaber_motion/dto/requests/axes_get_setting_request.py +0 -121
  658. zaber_motion-7.11.0/zaber_motion/dto/requests/axes_move_request.py +0 -114
  659. zaber_motion-7.11.0/zaber_motion/dto/requests/axis_empty_request.py +0 -79
  660. zaber_motion-7.11.0/zaber_motion/dto/requests/axis_move_type.py +0 -12
  661. zaber_motion-7.11.0/zaber_motion/dto/requests/axis_to_string_request.py +0 -88
  662. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_detect_request.py +0 -56
  663. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_detect_response.py +0 -57
  664. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_get_setting_request.py +0 -89
  665. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_home_request.py +0 -88
  666. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_move_request.py +0 -111
  667. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_set_setting_request.py +0 -100
  668. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_device_stop_request.py +0 -88
  669. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_generic_with_units_request.py +0 -122
  670. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_message_collection.py +0 -56
  671. zaber_motion-7.11.0/zaber_motion/dto/requests/binary_reply_only_event_wrapper.py +0 -82
  672. zaber_motion-7.11.0/zaber_motion/dto/requests/bool_response.py +0 -43
  673. zaber_motion-7.11.0/zaber_motion/dto/requests/can_set_state_axis_response.py +0 -60
  674. zaber_motion-7.11.0/zaber_motion/dto/requests/can_set_state_request.py +0 -100
  675. zaber_motion-7.11.0/zaber_motion/dto/requests/channel_on.py +0 -84
  676. zaber_motion-7.11.0/zaber_motion/dto/requests/channel_set_intensity.py +0 -90
  677. zaber_motion-7.11.0/zaber_motion/dto/requests/check_version_request.py +0 -54
  678. zaber_motion-7.11.0/zaber_motion/dto/requests/custom_interface_close_request.py +0 -60
  679. zaber_motion-7.11.0/zaber_motion/dto/requests/custom_interface_open_response.py +0 -51
  680. zaber_motion-7.11.0/zaber_motion/dto/requests/custom_interface_read_request.py +0 -51
  681. zaber_motion-7.11.0/zaber_motion/dto/requests/custom_interface_write_request.py +0 -60
  682. zaber_motion-7.11.0/zaber_motion/dto/requests/device_cancel_all_outputs_schedule_request.py +0 -80
  683. zaber_motion-7.11.0/zaber_motion/dto/requests/device_cancel_output_schedule_request.py +0 -84
  684. zaber_motion-7.11.0/zaber_motion/dto/requests/device_convert_setting_request.py +0 -116
  685. zaber_motion-7.11.0/zaber_motion/dto/requests/device_detect_request.py +0 -68
  686. zaber_motion-7.11.0/zaber_motion/dto/requests/device_detect_response.py +0 -57
  687. zaber_motion-7.11.0/zaber_motion/dto/requests/device_empty_request.py +0 -65
  688. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_all_analog_io_request.py +0 -74
  689. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_all_analog_io_response.py +0 -54
  690. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_all_digital_io_request.py +0 -74
  691. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_all_digital_io_response.py +0 -46
  692. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_analog_io_request.py +0 -88
  693. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_digital_io_request.py +0 -88
  694. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_setting_request.py +0 -100
  695. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_storage_request.py +0 -93
  696. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_warnings_request.py +0 -84
  697. zaber_motion-7.11.0/zaber_motion/dto/requests/device_get_warnings_response.py +0 -51
  698. zaber_motion-7.11.0/zaber_motion/dto/requests/device_home_request.py +0 -84
  699. zaber_motion-7.11.0/zaber_motion/dto/requests/device_identify_request.py +0 -77
  700. zaber_motion-7.11.0/zaber_motion/dto/requests/device_move_request.py +0 -177
  701. zaber_motion-7.11.0/zaber_motion/dto/requests/device_move_sin_request.py +0 -140
  702. zaber_motion-7.11.0/zaber_motion/dto/requests/device_multi_get_setting_request.py +0 -118
  703. zaber_motion-7.11.0/zaber_motion/dto/requests/device_on_all_request.py +0 -56
  704. zaber_motion-7.11.0/zaber_motion/dto/requests/device_on_all_response.py +0 -57
  705. zaber_motion-7.11.0/zaber_motion/dto/requests/device_restore_request.py +0 -84
  706. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_all_analog_outputs_request.py +0 -82
  707. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_all_analog_outputs_schedule_request.py +0 -121
  708. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_all_digital_outputs_request.py +0 -83
  709. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_all_digital_outputs_schedule_request.py +0 -122
  710. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_analog_output_request.py +0 -90
  711. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_analog_output_schedule_request.py +0 -124
  712. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_digital_output_request.py +0 -91
  713. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_digital_output_schedule_request.py +0 -125
  714. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_lowpass_filter_request.py +0 -102
  715. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_setting_bool_request.py +0 -93
  716. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_setting_int_request.py +0 -102
  717. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_setting_request.py +0 -111
  718. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_setting_str_request.py +0 -97
  719. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_storage_bool_request.py +0 -93
  720. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_storage_number_request.py +0 -99
  721. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_storage_request.py +0 -102
  722. zaber_motion-7.11.0/zaber_motion/dto/requests/device_set_unit_conversions_request.py +0 -108
  723. zaber_motion-7.11.0/zaber_motion/dto/requests/device_stop_request.py +0 -84
  724. zaber_motion-7.11.0/zaber_motion/dto/requests/device_storage_list_keys_request.py +0 -88
  725. zaber_motion-7.11.0/zaber_motion/dto/requests/device_storage_request.py +0 -88
  726. zaber_motion-7.11.0/zaber_motion/dto/requests/device_type.py +0 -8
  727. zaber_motion-7.11.0/zaber_motion/dto/requests/device_wait_until_idle_request.py +0 -84
  728. zaber_motion-7.11.0/zaber_motion/dto/requests/disconnected_event.py +0 -101
  729. zaber_motion-7.11.0/zaber_motion/dto/requests/double_array_response.py +0 -54
  730. zaber_motion-7.11.0/zaber_motion/dto/requests/double_response.py +0 -48
  731. zaber_motion-7.11.0/zaber_motion/dto/requests/driver_enable_request.py +0 -90
  732. zaber_motion-7.11.0/zaber_motion/dto/requests/empty_autofocus_request.py +0 -107
  733. zaber_motion-7.11.0/zaber_motion/dto/requests/empty_request.py +0 -38
  734. zaber_motion-7.11.0/zaber_motion/dto/requests/errors.py +0 -68
  735. zaber_motion-7.11.0/zaber_motion/dto/requests/find_device_request.py +0 -65
  736. zaber_motion-7.11.0/zaber_motion/dto/requests/find_device_response.py +0 -51
  737. zaber_motion-7.11.0/zaber_motion/dto/requests/forget_devices_request.py +0 -71
  738. zaber_motion-7.11.0/zaber_motion/dto/requests/gateway_event.py +0 -45
  739. zaber_motion-7.11.0/zaber_motion/dto/requests/gateway_request.py +0 -45
  740. zaber_motion-7.11.0/zaber_motion/dto/requests/gateway_response.py +0 -69
  741. zaber_motion-7.11.0/zaber_motion/dto/requests/generic_binary_request.py +0 -107
  742. zaber_motion-7.11.0/zaber_motion/dto/requests/generic_command_request.py +0 -107
  743. zaber_motion-7.11.0/zaber_motion/dto/requests/generic_command_response_collection.py +0 -56
  744. zaber_motion-7.11.0/zaber_motion/dto/requests/get_all_io_port_labels_response.py +0 -56
  745. zaber_motion-7.11.0/zaber_motion/dto/requests/get_axis_setting_results.py +0 -56
  746. zaber_motion-7.11.0/zaber_motion/dto/requests/get_io_port_label_request.py +0 -91
  747. zaber_motion-7.11.0/zaber_motion/dto/requests/get_setting_results.py +0 -56
  748. zaber_motion-7.11.0/zaber_motion/dto/requests/get_simple_tuning_param_definition_response.py +0 -56
  749. zaber_motion-7.11.0/zaber_motion/dto/requests/int_64_response.py +0 -51
  750. zaber_motion-7.11.0/zaber_motion/dto/requests/int_array_response.py +0 -57
  751. zaber_motion-7.11.0/zaber_motion/dto/requests/int_request.py +0 -51
  752. zaber_motion-7.11.0/zaber_motion/dto/requests/int_response.py +0 -51
  753. zaber_motion-7.11.0/zaber_motion/dto/requests/interface_empty_request.py +0 -51
  754. zaber_motion-7.11.0/zaber_motion/dto/requests/interface_type.py +0 -11
  755. zaber_motion-7.11.0/zaber_motion/dto/requests/load_paramset.py +0 -102
  756. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_disable_request.py +0 -84
  757. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_empty_request.py +0 -79
  758. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_enable_request.py +0 -99
  759. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_get_axis_numbers_response.py +0 -57
  760. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_get_request.py +0 -91
  761. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_home_request.py +0 -84
  762. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_move_request.py +0 -163
  763. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_move_sin_request.py +0 -140
  764. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_set_request.py +0 -116
  765. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_stop_request.py +0 -84
  766. zaber_motion-7.11.0/zaber_motion/dto/requests/lockstep_wait_until_idle_request.py +0 -84
  767. zaber_motion-7.11.0/zaber_motion/dto/requests/microscope_config_response.py +0 -50
  768. zaber_motion-7.11.0/zaber_motion/dto/requests/microscope_empty_request.py +0 -65
  769. zaber_motion-7.11.0/zaber_motion/dto/requests/microscope_find_request.py +0 -63
  770. zaber_motion-7.11.0/zaber_motion/dto/requests/microscope_init_request.py +0 -70
  771. zaber_motion-7.11.0/zaber_motion/dto/requests/microscope_trigger_camera_request.py +0 -107
  772. zaber_motion-7.11.0/zaber_motion/dto/requests/objective_changer_change_request.py +0 -119
  773. zaber_motion-7.11.0/zaber_motion/dto/requests/objective_changer_create_response.py +0 -79
  774. zaber_motion-7.11.0/zaber_motion/dto/requests/objective_changer_get_current_response.py +0 -51
  775. zaber_motion-7.11.0/zaber_motion/dto/requests/objective_changer_request.py +0 -93
  776. zaber_motion-7.11.0/zaber_motion/dto/requests/objective_changer_set_request.py +0 -116
  777. zaber_motion-7.11.0/zaber_motion/dto/requests/open_binary_interface_request.py +0 -100
  778. zaber_motion-7.11.0/zaber_motion/dto/requests/open_interface_request.py +0 -159
  779. zaber_motion-7.11.0/zaber_motion/dto/requests/open_interface_response.py +0 -51
  780. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_add_io_channel_request.py +0 -91
  781. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_add_setting_channel_request.py +0 -88
  782. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_data_get_request.py +0 -63
  783. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_data_get_sample_time_request.py +0 -77
  784. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_data_get_samples_response.py +0 -54
  785. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_data_identifier.py +0 -51
  786. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_read_response.py +0 -57
  787. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_request.py +0 -65
  788. zaber_motion-7.11.0/zaber_motion/dto/requests/oscilloscope_start_request.py +0 -79
  789. zaber_motion-7.11.0/zaber_motion/dto/requests/prepare_command_request.py +0 -108
  790. zaber_motion-7.11.0/zaber_motion/dto/requests/process_on.py +0 -107
  791. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_csv_request.py +0 -59
  792. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_generate_positions_request.py +0 -74
  793. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_generate_velocities_request.py +0 -93
  794. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_load_csv_request.py +0 -45
  795. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_point_request.py +0 -145
  796. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_points_request.py +0 -147
  797. zaber_motion-7.11.0/zaber_motion/dto/requests/pvt_save_csv_request.py +0 -74
  798. zaber_motion-7.11.0/zaber_motion/dto/requests/renumber_request.py +0 -79
  799. zaber_motion-7.11.0/zaber_motion/dto/requests/response_type.py +0 -8
  800. zaber_motion-7.11.0/zaber_motion/dto/requests/servo_tuning_paramset_response.py +0 -48
  801. zaber_motion-7.11.0/zaber_motion/dto/requests/servo_tuning_request.py +0 -91
  802. zaber_motion-7.11.0/zaber_motion/dto/requests/set_device_db_layered_sources_request.py +0 -56
  803. zaber_motion-7.11.0/zaber_motion/dto/requests/set_device_db_source_request.py +0 -63
  804. zaber_motion-7.11.0/zaber_motion/dto/requests/set_interface_checksum_enabled_request.py +0 -56
  805. zaber_motion-7.11.0/zaber_motion/dto/requests/set_interface_timeout_request.py +0 -65
  806. zaber_motion-7.11.0/zaber_motion/dto/requests/set_internal_mode_request.py +0 -43
  807. zaber_motion-7.11.0/zaber_motion/dto/requests/set_io_port_label_request.py +0 -100
  808. zaber_motion-7.11.0/zaber_motion/dto/requests/set_log_output_request.py +0 -57
  809. zaber_motion-7.11.0/zaber_motion/dto/requests/set_process_controller_source.py +0 -93
  810. zaber_motion-7.11.0/zaber_motion/dto/requests/set_servo_tuning_pid_request.py +0 -135
  811. zaber_motion-7.11.0/zaber_motion/dto/requests/set_servo_tuning_request.py +0 -116
  812. zaber_motion-7.11.0/zaber_motion/dto/requests/set_simple_tuning.py +0 -174
  813. zaber_motion-7.11.0/zaber_motion/dto/requests/set_state_request.py +0 -93
  814. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_arc_request.py +0 -199
  815. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_buffer_erase_request.py +0 -84
  816. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_buffer_get_content_request.py +0 -84
  817. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_buffer_get_content_response.py +0 -51
  818. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_buffer_list.py +0 -70
  819. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_call_request.py +0 -112
  820. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_cancel_all_outputs_schedule_request.py +0 -99
  821. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_cancel_output_schedule_request.py +0 -103
  822. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_circle_request.py +0 -155
  823. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_empty_request.py +0 -84
  824. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_generic_command_batch_request.py +0 -99
  825. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_generic_command_request.py +0 -93
  826. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_get_axes_response.py +0 -75
  827. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_get_max_centripetal_acceleration_request.py +0 -96
  828. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_get_max_speed_request.py +0 -96
  829. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_get_max_tangential_acceleration_request.py +0 -96
  830. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_line_request.py +0 -135
  831. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_mode_response.py +0 -60
  832. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_segment_type.py +0 -8
  833. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_all_analog_outputs_request.py +0 -101
  834. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_all_analog_outputs_schedule_request.py +0 -140
  835. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_all_digital_outputs_request.py +0 -102
  836. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_all_digital_outputs_schedule_request.py +0 -141
  837. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_analog_output_request.py +0 -109
  838. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_analog_output_schedule_request.py +0 -143
  839. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_digital_output_request.py +0 -110
  840. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_digital_output_schedule_request.py +0 -144
  841. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_hold_request.py +0 -89
  842. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_max_centripetal_acceleration_request.py +0 -107
  843. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_max_speed_request.py +0 -107
  844. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_set_max_tangential_acceleration_request.py +0 -107
  845. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_setup_live_composite_request.py +0 -123
  846. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_setup_live_request.py +0 -104
  847. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_setup_store_arbitrary_axes_request.py +0 -126
  848. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_setup_store_composite_request.py +0 -151
  849. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_setup_store_request.py +0 -132
  850. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_wait_analog_input_request.py +0 -118
  851. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_wait_digital_input_request.py +0 -103
  852. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_wait_request.py +0 -107
  853. zaber_motion-7.11.0/zaber_motion/dto/requests/stream_wait_until_idle_request.py +0 -89
  854. zaber_motion-7.11.0/zaber_motion/dto/requests/string_array_response.py +0 -51
  855. zaber_motion-7.11.0/zaber_motion/dto/requests/string_response.py +0 -45
  856. zaber_motion-7.11.0/zaber_motion/dto/requests/test_event.py +0 -45
  857. zaber_motion-7.11.0/zaber_motion/dto/requests/test_request.py +0 -55
  858. zaber_motion-7.11.0/zaber_motion/dto/requests/test_response.py +0 -45
  859. zaber_motion-7.11.0/zaber_motion/dto/requests/test_response_long.py +0 -51
  860. zaber_motion-7.11.0/zaber_motion/dto/requests/toggle_device_db_store_request.py +0 -50
  861. zaber_motion-7.11.0/zaber_motion/dto/requests/tools_list_serial_ports_response.py +0 -51
  862. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_create_from_device_request.py +0 -97
  863. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_create_live_request.py +0 -91
  864. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_create_request.py +0 -62
  865. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_create_response.py +0 -51
  866. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_empty_request.py +0 -51
  867. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_flush_live_request.py +0 -56
  868. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_flush_response.py +0 -51
  869. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_get_axis_offset_request.py +0 -81
  870. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_get_axis_position_request.py +0 -72
  871. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_set_axis_position_request.py +0 -83
  872. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_set_feed_rate_override_request.py +0 -62
  873. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_set_traverse_rate_request.py +0 -74
  874. zaber_motion-7.11.0/zaber_motion/dto/requests/translator_translate_request.py +0 -60
  875. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_clear_action_request.py +0 -91
  876. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_empty_request.py +0 -79
  877. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_enable_request.py +0 -93
  878. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_enabled_states.py +0 -56
  879. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_fire_at_interval_request.py +0 -102
  880. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_fire_when_distance_travelled_request.py +0 -116
  881. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_fire_when_io_request.py +0 -128
  882. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_fire_when_request.py +0 -88
  883. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_fire_when_setting_request.py +0 -137
  884. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_on_fire_request.py +0 -114
  885. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_on_fire_set_request.py +0 -149
  886. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_on_fire_set_to_setting_request.py +0 -149
  887. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_set_label_request.py +0 -88
  888. zaber_motion-7.11.0/zaber_motion/dto/requests/trigger_states.py +0 -56
  889. zaber_motion-7.11.0/zaber_motion/dto/requests/unit_convert_unit_request.py +0 -71
  890. zaber_motion-7.11.0/zaber_motion/dto/requests/unit_get_enum_request.py +0 -45
  891. zaber_motion-7.11.0/zaber_motion/dto/requests/unit_get_enum_response.py +0 -48
  892. zaber_motion-7.11.0/zaber_motion/dto/requests/unit_get_symbol_request.py +0 -48
  893. zaber_motion-7.11.0/zaber_motion/dto/requests/unit_get_symbol_response.py +0 -45
  894. zaber_motion-7.11.0/zaber_motion/dto/requests/unknown_binary_response_event_wrapper.py +0 -82
  895. zaber_motion-7.11.0/zaber_motion/dto/requests/unknown_response_event_wrapper.py +0 -82
  896. zaber_motion-7.11.0/zaber_motion/dto/requests/wait_to_clear_warnings_request.py +0 -105
  897. zaber_motion-7.11.0/zaber_motion/dto/requests/wait_to_respond_request.py +0 -76
  898. zaber_motion-7.11.0/zaber_motion/dto/requests/wdi_generic_request.py +0 -136
  899. zaber_motion-7.11.0/zaber_motion/dto/requests/wdi_get_status_response.py +0 -50
  900. zaber_motion-7.11.0/zaber_motion/dto/rotation_direction.py +0 -13
  901. zaber_motion-7.11.0/zaber_motion/dto_object.py +0 -18
  902. zaber_motion-7.11.0/zaber_motion/events.py +0 -112
  903. zaber_motion-7.11.0/zaber_motion/exceptions/__init__.py +0 -87
  904. zaber_motion-7.11.0/zaber_motion/exceptions/bad_command_exception.py +0 -10
  905. zaber_motion-7.11.0/zaber_motion/exceptions/bad_data_exception.py +0 -10
  906. zaber_motion-7.11.0/zaber_motion/exceptions/binary_command_failed_exception.py +0 -27
  907. zaber_motion-7.11.0/zaber_motion/exceptions/command_failed_exception.py +0 -27
  908. zaber_motion-7.11.0/zaber_motion/exceptions/command_preempted_exception.py +0 -10
  909. zaber_motion-7.11.0/zaber_motion/exceptions/command_too_long_exception.py +0 -27
  910. zaber_motion-7.11.0/zaber_motion/exceptions/connection_closed_exception.py +0 -10
  911. zaber_motion-7.11.0/zaber_motion/exceptions/connection_failed_exception.py +0 -10
  912. zaber_motion-7.11.0/zaber_motion/exceptions/conversion_failed_exception.py +0 -10
  913. zaber_motion-7.11.0/zaber_motion/exceptions/device_address_conflict_exception.py +0 -27
  914. zaber_motion-7.11.0/zaber_motion/exceptions/device_busy_exception.py +0 -10
  915. zaber_motion-7.11.0/zaber_motion/exceptions/device_db_failed_exception.py +0 -27
  916. zaber_motion-7.11.0/zaber_motion/exceptions/device_detection_failed_exception.py +0 -10
  917. zaber_motion-7.11.0/zaber_motion/exceptions/device_failed_exception.py +0 -11
  918. zaber_motion-7.11.0/zaber_motion/exceptions/device_not_identified_exception.py +0 -10
  919. zaber_motion-7.11.0/zaber_motion/exceptions/driver_disabled_exception.py +0 -10
  920. zaber_motion-7.11.0/zaber_motion/exceptions/g_code_execution_exception.py +0 -27
  921. zaber_motion-7.11.0/zaber_motion/exceptions/g_code_syntax_exception.py +0 -27
  922. zaber_motion-7.11.0/zaber_motion/exceptions/incompatible_shared_library_exception.py +0 -11
  923. zaber_motion-7.11.0/zaber_motion/exceptions/internal_error_exception.py +0 -10
  924. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_argument_exception.py +0 -10
  925. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_csv_data_exception.py +0 -10
  926. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_data_exception.py +0 -10
  927. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_operation_exception.py +0 -10
  928. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_packet_exception.py +0 -27
  929. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_park_state_exception.py +0 -10
  930. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_request_data_exception.py +0 -11
  931. zaber_motion-7.11.0/zaber_motion/exceptions/invalid_response_exception.py +0 -27
  932. zaber_motion-7.11.0/zaber_motion/exceptions/io_channel_out_of_range_exception.py +0 -10
  933. zaber_motion-7.11.0/zaber_motion/exceptions/io_failed_exception.py +0 -10
  934. zaber_motion-7.11.0/zaber_motion/exceptions/lockstep_enabled_exception.py +0 -10
  935. zaber_motion-7.11.0/zaber_motion/exceptions/lockstep_not_enabled_exception.py +0 -10
  936. zaber_motion-7.11.0/zaber_motion/exceptions/motion_lib_exception.py +0 -18
  937. zaber_motion-7.11.0/zaber_motion/exceptions/movement_failed_exception.py +0 -27
  938. zaber_motion-7.11.0/zaber_motion/exceptions/movement_interrupted_exception.py +0 -27
  939. zaber_motion-7.11.0/zaber_motion/exceptions/no_device_found_exception.py +0 -10
  940. zaber_motion-7.11.0/zaber_motion/exceptions/no_value_for_key_exception.py +0 -10
  941. zaber_motion-7.11.0/zaber_motion/exceptions/not_supported_exception.py +0 -10
  942. zaber_motion-7.11.0/zaber_motion/exceptions/operation_failed_exception.py +0 -27
  943. zaber_motion-7.11.0/zaber_motion/exceptions/os_failed_exception.py +0 -10
  944. zaber_motion-7.11.0/zaber_motion/exceptions/out_of_request_ids_exception.py +0 -10
  945. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_discontinuity_exception.py +0 -10
  946. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_execution_exception.py +0 -27
  947. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_mode_exception.py +0 -10
  948. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_movement_failed_exception.py +0 -27
  949. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_movement_interrupted_exception.py +0 -27
  950. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_sequence_generation_failed_exception.py +0 -10
  951. zaber_motion-7.11.0/zaber_motion/exceptions/pvt_setup_failed_exception.py +0 -10
  952. zaber_motion-7.11.0/zaber_motion/exceptions/remote_mode_exception.py +0 -11
  953. zaber_motion-7.11.0/zaber_motion/exceptions/request_timeout_exception.py +0 -10
  954. zaber_motion-7.11.0/zaber_motion/exceptions/serial_port_busy_exception.py +0 -10
  955. zaber_motion-7.11.0/zaber_motion/exceptions/set_device_state_failed_exception.py +0 -27
  956. zaber_motion-7.11.0/zaber_motion/exceptions/set_peripheral_state_failed_exception.py +0 -27
  957. zaber_motion-7.11.0/zaber_motion/exceptions/setting_not_found_exception.py +0 -10
  958. zaber_motion-7.11.0/zaber_motion/exceptions/stream_discontinuity_exception.py +0 -10
  959. zaber_motion-7.11.0/zaber_motion/exceptions/stream_execution_exception.py +0 -27
  960. zaber_motion-7.11.0/zaber_motion/exceptions/stream_mode_exception.py +0 -10
  961. zaber_motion-7.11.0/zaber_motion/exceptions/stream_movement_failed_exception.py +0 -27
  962. zaber_motion-7.11.0/zaber_motion/exceptions/stream_movement_interrupted_exception.py +0 -27
  963. zaber_motion-7.11.0/zaber_motion/exceptions/stream_setup_failed_exception.py +0 -10
  964. zaber_motion-7.11.0/zaber_motion/exceptions/timeout_exception.py +0 -10
  965. zaber_motion-7.11.0/zaber_motion/exceptions/transport_already_used_exception.py +0 -10
  966. zaber_motion-7.11.0/zaber_motion/exceptions/unknown_request_exception.py +0 -10
  967. zaber_motion-7.11.0/zaber_motion/gcode/__init__.py +0 -11
  968. zaber_motion-7.11.0/zaber_motion/gcode/offline_translator.py +0 -401
  969. zaber_motion-7.11.0/zaber_motion/gcode/translator.py +0 -424
  970. zaber_motion-7.11.0/zaber_motion/library.py +0 -179
  971. zaber_motion-7.11.0/zaber_motion/microscopy/__init__.py +0 -14
  972. zaber_motion-7.11.0/zaber_motion/microscopy/autofocus.py +0 -645
  973. zaber_motion-7.11.0/zaber_motion/microscopy/camera_trigger.py +0 -108
  974. zaber_motion-7.11.0/zaber_motion/microscopy/filter_changer.py +0 -167
  975. zaber_motion-7.11.0/zaber_motion/microscopy/illuminator.py +0 -139
  976. zaber_motion-7.11.0/zaber_motion/microscopy/illuminator_channel.py +0 -616
  977. zaber_motion-7.11.0/zaber_motion/microscopy/microscope.py +0 -268
  978. zaber_motion-7.11.0/zaber_motion/microscopy/objective_changer.py +0 -403
  979. zaber_motion-7.11.0/zaber_motion/microscopy/wdi_autofocus_provider.py +0 -396
  980. zaber_motion-7.11.0/zaber_motion/product/__init__.py +0 -7
  981. zaber_motion-7.11.0/zaber_motion/product/process.py +0 -818
  982. zaber_motion-7.11.0/zaber_motion/product/process_controller.py +0 -134
  983. zaber_motion-7.11.0/zaber_motion/serialization.py +0 -32
  984. zaber_motion-7.11.0/zaber_motion/tools.py +0 -78
  985. zaber_motion-7.11.0/zaber_motion/unit_table.py +0 -86
  986. zaber_motion-7.11.0/zaber_motion/units.py +0 -206
  987. zaber_motion-7.11.0/zaber_motion/version.py +0 -1
  988. zaber_motion-7.11.0/zaber_motion.egg-info/PKG-INFO +0 -2151
  989. zaber_motion-7.11.0/zaber_motion.egg-info/SOURCES.txt +0 -496
  990. {zaber_motion-7.11.0 → zaber_motion-7.13.0}/zaber_motion/py.typed +0 -0
  991. {zaber_motion-7.11.0 → zaber_motion-7.13.0}/zaber_motion.egg-info/dependency_links.txt +0 -0
  992. {zaber_motion-7.11.0 → zaber_motion-7.13.0}/zaber_motion.egg-info/requires.txt +0 -0
  993. {zaber_motion-7.11.0 → zaber_motion-7.13.0}/zaber_motion.egg-info/top_level.txt +0 -0
@@ -0,0 +1,2119 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright 2018-2022 Zaber Technologies Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10
+
11
+
12
+ ------------------
13
+ The following lines contain the licenses of all libraries and tools that have been used to build the binary which we distribute.
14
+
15
+ ------------------
16
+ github.com/BurntSushi/toml v0.3.1
17
+ ------------------
18
+ The MIT License (MIT)
19
+
20
+ Copyright (c) 2013 TOML authors
21
+
22
+ Permission is hereby granted, free of charge, to any person obtaining a copy
23
+ of this software and associated documentation files (the "Software"), to deal
24
+ in the Software without restriction, including without limitation the rights
25
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26
+ copies of the Software, and to permit persons to whom the Software is
27
+ furnished to do so, subject to the following conditions:
28
+
29
+ The above copyright notice and this permission notice shall be included in
30
+ all copies or substantial portions of the Software.
31
+
32
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38
+ THE SOFTWARE.
39
+
40
+ ------------------
41
+ github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6
42
+ ------------------
43
+ The MIT License (MIT)
44
+
45
+ Copyright (c) 2013 Stack Exchange
46
+
47
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
48
+ this software and associated documentation files (the "Software"), to deal in
49
+ the Software without restriction, including without limitation the rights to
50
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
51
+ the Software, and to permit persons to whom the Software is furnished to do so,
52
+ subject to the following conditions:
53
+
54
+ The above copyright notice and this permission notice shall be included in all
55
+ copies or substantial portions of the Software.
56
+
57
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
58
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
59
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
60
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
61
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
62
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
63
+
64
+ ------------------
65
+ github.com/chavacava/garif v0.0.0-20210405164556-e8a0a408d6af
66
+ ------------------
67
+ MIT License
68
+
69
+ Copyright (c) 2021 Salvador Cavadini
70
+
71
+ Permission is hereby granted, free of charge, to any person obtaining a copy
72
+ of this software and associated documentation files (the "Software"), to deal
73
+ in the Software without restriction, including without limitation the rights
74
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
75
+ copies of the Software, and to permit persons to whom the Software is
76
+ furnished to do so, subject to the following conditions:
77
+
78
+ The above copyright notice and this permission notice shall be included in all
79
+ copies or substantial portions of the Software.
80
+
81
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
84
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
85
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
86
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
87
+ SOFTWARE.
88
+
89
+ ------------------
90
+ github.com/creack/goselect v0.1.2
91
+ ------------------
92
+ The MIT License (MIT)
93
+
94
+ Copyright (c) 2014 Guillaume J. Charmes
95
+
96
+ Permission is hereby granted, free of charge, to any person obtaining a copy
97
+ of this software and associated documentation files (the "Software"), to deal
98
+ in the Software without restriction, including without limitation the rights
99
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
100
+ copies of the Software, and to permit persons to whom the Software is
101
+ furnished to do so, subject to the following conditions:
102
+
103
+ The above copyright notice and this permission notice shall be included in all
104
+ copies or substantial portions of the Software.
105
+
106
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
107
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
108
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
109
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
110
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
111
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
112
+ SOFTWARE.
113
+
114
+
115
+ ------------------
116
+ github.com/davecgh/go-spew v1.1.1
117
+ ------------------
118
+ ISC License
119
+
120
+ Copyright (c) 2012-2016 Dave Collins <dave@davec.name>
121
+
122
+ Permission to use, copy, modify, and/or distribute this software for any
123
+ purpose with or without fee is hereby granted, provided that the above
124
+ copyright notice and this permission notice appear in all copies.
125
+
126
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
127
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
128
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
129
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
130
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
131
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
132
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
133
+
134
+ ------------------
135
+ github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea
136
+ ------------------
137
+ Open Source Initiative OSI - The MIT License (MIT):Licensing
138
+
139
+ The MIT License (MIT)
140
+ Copyright (c) 2013 Ralph Caraveo (deckarep@gmail.com)
141
+
142
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
143
+ this software and associated documentation files (the "Software"), to deal in
144
+ the Software without restriction, including without limitation the rights to
145
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
146
+ of the Software, and to permit persons to whom the Software is furnished to do
147
+ so, subject to the following conditions:
148
+
149
+ The above copyright notice and this permission notice shall be included in all
150
+ copies or substantial portions of the Software.
151
+
152
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
153
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
154
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
155
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
156
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
157
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
158
+ SOFTWARE.
159
+ ------------------
160
+ github.com/eclipse/paho.mqtt.golang v1.3.5
161
+ ------------------
162
+ This project is dual licensed under the Eclipse Public License 1.0 and the
163
+ Eclipse Distribution License 1.0 as described in the epl-v10 and edl-v10 files.
164
+
165
+ The EDL is copied below in order to pass the pkg.go.dev license check (https://pkg.go.dev/license-policy).
166
+
167
+ ****
168
+ Eclipse Distribution License - v 1.0
169
+
170
+ Copyright (c) 2007, Eclipse Foundation, Inc. and its licensors.
171
+
172
+ All rights reserved.
173
+
174
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
175
+
176
+ Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
177
+ Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
178
+ Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
179
+
180
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
181
+
182
+
183
+ ------------------
184
+ github.com/fatih/color v1.12.0
185
+ ------------------
186
+ The MIT License (MIT)
187
+
188
+ Copyright (c) 2013 Fatih Arslan
189
+
190
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
191
+ this software and associated documentation files (the "Software"), to deal in
192
+ the Software without restriction, including without limitation the rights to
193
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
194
+ the Software, and to permit persons to whom the Software is furnished to do so,
195
+ subject to the following conditions:
196
+
197
+ The above copyright notice and this permission notice shall be included in all
198
+ copies or substantial portions of the Software.
199
+
200
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
201
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
202
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
203
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
204
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
205
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
206
+
207
+ ------------------
208
+ github.com/fatih/structtag v1.2.0
209
+ ------------------
210
+ Copyright (c) 2017, Fatih Arslan
211
+ All rights reserved.
212
+
213
+ Redistribution and use in source and binary forms, with or without
214
+ modification, are permitted provided that the following conditions are met:
215
+
216
+ * Redistributions of source code must retain the above copyright notice, this
217
+ list of conditions and the following disclaimer.
218
+
219
+ * Redistributions in binary form must reproduce the above copyright notice,
220
+ this list of conditions and the following disclaimer in the documentation
221
+ and/or other materials provided with the distribution.
222
+
223
+ * Neither the name of structtag nor the names of its
224
+ contributors may be used to endorse or promote products derived from
225
+ this software without specific prior written permission.
226
+
227
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
228
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
229
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
230
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
231
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
232
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
233
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
234
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
235
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
236
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
237
+
238
+ This software includes some portions from Go. Go is used under the terms of the
239
+ BSD like license.
240
+
241
+ Copyright (c) 2012 The Go Authors. All rights reserved.
242
+
243
+ Redistribution and use in source and binary forms, with or without
244
+ modification, are permitted provided that the following conditions are
245
+ met:
246
+
247
+ * Redistributions of source code must retain the above copyright
248
+ notice, this list of conditions and the following disclaimer.
249
+ * Redistributions in binary form must reproduce the above
250
+ copyright notice, this list of conditions and the following disclaimer
251
+ in the documentation and/or other materials provided with the
252
+ distribution.
253
+ * Neither the name of Google Inc. nor the names of its
254
+ contributors may be used to endorse or promote products derived from
255
+ this software without specific prior written permission.
256
+
257
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
258
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
259
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
260
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
261
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
262
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
263
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
264
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
265
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
267
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
268
+
269
+ The Go gopher was designed by Renee French. http://reneefrench.blogspot.com/ The design is licensed under the Creative Commons 3.0 Attributions license. Read this article for more details: https://blog.golang.org/gopher
270
+
271
+ ------------------
272
+ github.com/go-gl/mathgl v1.0.0
273
+ ------------------
274
+ Copyright ©2013 The go-gl Authors. All rights reserved.
275
+
276
+ Redistribution and use in source and binary forms, with or without
277
+ modification, are permitted provided that the following conditions are met:
278
+ * Redistributions of source code must retain the above copyright
279
+ notice, this list of conditions and the following disclaimer.
280
+ * Redistributions in binary form must reproduce the above copyright
281
+ notice, this list of conditions and the following disclaimer in the
282
+ documentation and/or other materials provided with the distribution.
283
+ * Neither the name of the gonum project nor the names of its authors and
284
+ contributors may be used to endorse or promote products derived from this
285
+ software without specific prior written permission.
286
+
287
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
288
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
289
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
290
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
291
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
292
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
293
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
294
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
295
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
296
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
297
+ ------------------
298
+ github.com/go-ole/go-ole v1.2.1
299
+ ------------------
300
+ The MIT License (MIT)
301
+
302
+ Copyright © 2013-2017 Yasuhiro Matsumoto, <mattn.jp@gmail.com>
303
+
304
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
305
+ this software and associated documentation files (the “Software”), to deal in
306
+ the Software without restriction, including without limitation the rights to
307
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
308
+ of the Software, and to permit persons to whom the Software is furnished to do
309
+ so, subject to the following conditions:
310
+
311
+ The above copyright notice and this permission notice shall be included in all
312
+ copies or substantial portions of the Software.
313
+
314
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
315
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
316
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
317
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
318
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
319
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
320
+ SOFTWARE.
321
+
322
+ ------------------
323
+ github.com/go-stack/stack v1.8.0
324
+ ------------------
325
+ The MIT License (MIT)
326
+
327
+ Copyright (c) 2014 Chris Hines
328
+
329
+ Permission is hereby granted, free of charge, to any person obtaining a copy
330
+ of this software and associated documentation files (the "Software"), to deal
331
+ in the Software without restriction, including without limitation the rights
332
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
333
+ copies of the Software, and to permit persons to whom the Software is
334
+ furnished to do so, subject to the following conditions:
335
+
336
+ The above copyright notice and this permission notice shall be included in all
337
+ copies or substantial portions of the Software.
338
+
339
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
340
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
341
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
342
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
343
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
344
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
345
+ SOFTWARE.
346
+
347
+ ------------------
348
+ github.com/golang/protobuf v1.5.2
349
+ ------------------
350
+ Copyright 2010 The Go Authors. All rights reserved.
351
+
352
+ Redistribution and use in source and binary forms, with or without
353
+ modification, are permitted provided that the following conditions are
354
+ met:
355
+
356
+ * Redistributions of source code must retain the above copyright
357
+ notice, this list of conditions and the following disclaimer.
358
+ * Redistributions in binary form must reproduce the above
359
+ copyright notice, this list of conditions and the following disclaimer
360
+ in the documentation and/or other materials provided with the
361
+ distribution.
362
+ * Neither the name of Google Inc. nor the names of its
363
+ contributors may be used to endorse or promote products derived from
364
+ this software without specific prior written permission.
365
+
366
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
367
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
368
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
369
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
370
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
371
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
372
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
373
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
374
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
375
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
376
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
377
+
378
+
379
+ ------------------
380
+ github.com/google/go-cmp v0.5.6
381
+ ------------------
382
+ Copyright (c) 2017 The Go Authors. All rights reserved.
383
+
384
+ Redistribution and use in source and binary forms, with or without
385
+ modification, are permitted provided that the following conditions are
386
+ met:
387
+
388
+ * Redistributions of source code must retain the above copyright
389
+ notice, this list of conditions and the following disclaimer.
390
+ * Redistributions in binary form must reproduce the above
391
+ copyright notice, this list of conditions and the following disclaimer
392
+ in the documentation and/or other materials provided with the
393
+ distribution.
394
+ * Neither the name of Google Inc. nor the names of its
395
+ contributors may be used to endorse or promote products derived from
396
+ this software without specific prior written permission.
397
+
398
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
399
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
400
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
401
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
402
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
403
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
404
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
405
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
406
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
407
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
408
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
409
+
410
+ ------------------
411
+ github.com/gorilla/websocket v1.4.2
412
+ ------------------
413
+ Copyright (c) 2013 The Gorilla WebSocket Authors. All rights reserved.
414
+
415
+ Redistribution and use in source and binary forms, with or without
416
+ modification, are permitted provided that the following conditions are met:
417
+
418
+ Redistributions of source code must retain the above copyright notice, this
419
+ list of conditions and the following disclaimer.
420
+
421
+ Redistributions in binary form must reproduce the above copyright notice,
422
+ this list of conditions and the following disclaimer in the documentation
423
+ and/or other materials provided with the distribution.
424
+
425
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
426
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
427
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
428
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
429
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
430
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
431
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
432
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
433
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
434
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
435
+
436
+ ------------------
437
+ github.com/mattn/go-colorable v0.1.8
438
+ ------------------
439
+ The MIT License (MIT)
440
+
441
+ Copyright (c) 2016 Yasuhiro Matsumoto
442
+
443
+ Permission is hereby granted, free of charge, to any person obtaining a copy
444
+ of this software and associated documentation files (the "Software"), to deal
445
+ in the Software without restriction, including without limitation the rights
446
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
447
+ copies of the Software, and to permit persons to whom the Software is
448
+ furnished to do so, subject to the following conditions:
449
+
450
+ The above copyright notice and this permission notice shall be included in all
451
+ copies or substantial portions of the Software.
452
+
453
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
454
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
455
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
456
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
457
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
458
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
459
+ SOFTWARE.
460
+
461
+ ------------------
462
+ github.com/mattn/go-isatty v0.0.12
463
+ ------------------
464
+ Copyright (c) Yasuhiro MATSUMOTO <mattn.jp@gmail.com>
465
+
466
+ MIT License (Expat)
467
+
468
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
469
+
470
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
471
+
472
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
473
+
474
+ ------------------
475
+ github.com/mattn/go-runewidth v0.0.9
476
+ ------------------
477
+ The MIT License (MIT)
478
+
479
+ Copyright (c) 2016 Yasuhiro Matsumoto
480
+
481
+ Permission is hereby granted, free of charge, to any person obtaining a copy
482
+ of this software and associated documentation files (the "Software"), to deal
483
+ in the Software without restriction, including without limitation the rights
484
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
485
+ copies of the Software, and to permit persons to whom the Software is
486
+ furnished to do so, subject to the following conditions:
487
+
488
+ The above copyright notice and this permission notice shall be included in all
489
+ copies or substantial portions of the Software.
490
+
491
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
492
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
493
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
494
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
495
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
496
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
497
+ SOFTWARE.
498
+
499
+ ------------------
500
+ github.com/mattn/go-sqlite3 v1.11.0
501
+ ------------------
502
+ The MIT License (MIT)
503
+
504
+ Copyright (c) 2014 Yasuhiro Matsumoto
505
+
506
+ Permission is hereby granted, free of charge, to any person obtaining a copy
507
+ of this software and associated documentation files (the "Software"), to deal
508
+ in the Software without restriction, including without limitation the rights
509
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
510
+ copies of the Software, and to permit persons to whom the Software is
511
+ furnished to do so, subject to the following conditions:
512
+
513
+ The above copyright notice and this permission notice shall be included in all
514
+ copies or substantial portions of the Software.
515
+
516
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
517
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
518
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
519
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
520
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
521
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
522
+ SOFTWARE.
523
+
524
+ ------------------
525
+ github.com/mgechev/dots v0.0.0-20190921121421-c36f7dcfbb81
526
+ ------------------
527
+ MIT License
528
+
529
+ Copyright (c) 2018 Minko Gechev
530
+
531
+ Permission is hereby granted, free of charge, to any person obtaining a copy
532
+ of this software and associated documentation files (the "Software"), to deal
533
+ in the Software without restriction, including without limitation the rights
534
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
535
+ copies of the Software, and to permit persons to whom the Software is
536
+ furnished to do so, subject to the following conditions:
537
+
538
+ The above copyright notice and this permission notice shall be included in all
539
+ copies or substantial portions of the Software.
540
+
541
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
542
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
543
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
544
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
545
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
546
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
547
+ SOFTWARE.
548
+
549
+ ------------------
550
+ github.com/mgechev/revive v1.0.7
551
+ ------------------
552
+ MIT License
553
+
554
+ Copyright (c) 2018 Minko Gechev
555
+
556
+ Permission is hereby granted, free of charge, to any person obtaining a copy
557
+ of this software and associated documentation files (the "Software"), to deal
558
+ in the Software without restriction, including without limitation the rights
559
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
560
+ copies of the Software, and to permit persons to whom the Software is
561
+ furnished to do so, subject to the following conditions:
562
+
563
+ The above copyright notice and this permission notice shall be included in all
564
+ copies or substantial portions of the Software.
565
+
566
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
567
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
568
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
569
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
570
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
571
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
572
+ SOFTWARE.
573
+
574
+ ------------------
575
+ github.com/mitchellh/go-homedir v1.1.0
576
+ ------------------
577
+ The MIT License (MIT)
578
+
579
+ Copyright (c) 2013 Mitchell Hashimoto
580
+
581
+ Permission is hereby granted, free of charge, to any person obtaining a copy
582
+ of this software and associated documentation files (the "Software"), to deal
583
+ in the Software without restriction, including without limitation the rights
584
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
585
+ copies of the Software, and to permit persons to whom the Software is
586
+ furnished to do so, subject to the following conditions:
587
+
588
+ The above copyright notice and this permission notice shall be included in
589
+ all copies or substantial portions of the Software.
590
+
591
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
592
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
593
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
594
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
595
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
596
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
597
+ THE SOFTWARE.
598
+
599
+ ------------------
600
+ github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
601
+ ------------------
602
+ Copyright (C) 2011 by Krzysztof Kowalik <chris@nu7hat.ch>
603
+
604
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
605
+ this software and associated documentation files (the "Software"), to deal in
606
+ the Software without restriction, including without limitation the rights to
607
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
608
+ of the Software, and to permit persons to whom the Software is furnished to do
609
+ so, subject to the following conditions:
610
+
611
+ The above copyright notice and this permission notice shall be included in all
612
+ copies or substantial portions of the Software.
613
+
614
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
615
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
616
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
617
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
618
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
619
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
620
+ SOFTWARE.
621
+ ------------------
622
+ github.com/olekukonko/tablewriter v0.0.5
623
+ ------------------
624
+ Copyright (C) 2014 by Oleku Konko
625
+
626
+ Permission is hereby granted, free of charge, to any person obtaining a copy
627
+ of this software and associated documentation files (the "Software"), to deal
628
+ in the Software without restriction, including without limitation the rights
629
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
630
+ copies of the Software, and to permit persons to whom the Software is
631
+ furnished to do so, subject to the following conditions:
632
+
633
+ The above copyright notice and this permission notice shall be included in
634
+ all copies or substantial portions of the Software.
635
+
636
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
637
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
638
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
639
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
640
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
641
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
642
+ THE SOFTWARE.
643
+
644
+ ------------------
645
+ github.com/pkg/errors v0.9.1
646
+ ------------------
647
+ Copyright (c) 2015, Dave Cheney <dave@cheney.net>
648
+ All rights reserved.
649
+
650
+ Redistribution and use in source and binary forms, with or without
651
+ modification, are permitted provided that the following conditions are met:
652
+
653
+ * Redistributions of source code must retain the above copyright notice, this
654
+ list of conditions and the following disclaimer.
655
+
656
+ * Redistributions in binary form must reproduce the above copyright notice,
657
+ this list of conditions and the following disclaimer in the documentation
658
+ and/or other materials provided with the distribution.
659
+
660
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
661
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
662
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
663
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
664
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
665
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
666
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
667
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
668
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
669
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
670
+
671
+ ------------------
672
+ github.com/pmezard/go-difflib v1.0.0
673
+ ------------------
674
+ Copyright (c) 2013, Patrick Mezard
675
+ All rights reserved.
676
+
677
+ Redistribution and use in source and binary forms, with or without
678
+ modification, are permitted provided that the following conditions are
679
+ met:
680
+
681
+ Redistributions of source code must retain the above copyright
682
+ notice, this list of conditions and the following disclaimer.
683
+ Redistributions in binary form must reproduce the above copyright
684
+ notice, this list of conditions and the following disclaimer in the
685
+ documentation and/or other materials provided with the distribution.
686
+ The names of its contributors may not be used to endorse or promote
687
+ products derived from this software without specific prior written
688
+ permission.
689
+
690
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
691
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
692
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
693
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
694
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
695
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
696
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
697
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
698
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
699
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
700
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
701
+
702
+ ------------------
703
+ github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible
704
+ ------------------
705
+ gopsutil is distributed under BSD license reproduced below.
706
+
707
+ Copyright (c) 2014, WAKAYAMA Shirou
708
+ All rights reserved.
709
+
710
+ Redistribution and use in source and binary forms, with or without modification,
711
+ are permitted provided that the following conditions are met:
712
+
713
+ * Redistributions of source code must retain the above copyright notice, this
714
+ list of conditions and the following disclaimer.
715
+ * Redistributions in binary form must reproduce the above copyright notice,
716
+ this list of conditions and the following disclaimer in the documentation
717
+ and/or other materials provided with the distribution.
718
+ * Neither the name of the gopsutil authors nor the names of its contributors
719
+ may be used to endorse or promote products derived from this software without
720
+ specific prior written permission.
721
+
722
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
723
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
724
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
725
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
726
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
727
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
728
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
729
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
730
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
731
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
732
+
733
+
734
+ -------
735
+ internal/common/binary.go in the gopsutil is copied and modifid from golang/encoding/binary.go.
736
+
737
+
738
+
739
+ Copyright (c) 2009 The Go Authors. All rights reserved.
740
+
741
+ Redistribution and use in source and binary forms, with or without
742
+ modification, are permitted provided that the following conditions are
743
+ met:
744
+
745
+ * Redistributions of source code must retain the above copyright
746
+ notice, this list of conditions and the following disclaimer.
747
+ * Redistributions in binary form must reproduce the above
748
+ copyright notice, this list of conditions and the following disclaimer
749
+ in the documentation and/or other materials provided with the
750
+ distribution.
751
+ * Neither the name of Google Inc. nor the names of its
752
+ contributors may be used to endorse or promote products derived from
753
+ this software without specific prior written permission.
754
+
755
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
756
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
757
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
758
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
759
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
760
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
761
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
762
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
763
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
764
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
765
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
766
+ ------------------
767
+ github.com/stretchr/testify v1.7.0
768
+ ------------------
769
+ MIT License
770
+
771
+ Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
772
+
773
+ Permission is hereby granted, free of charge, to any person obtaining a copy
774
+ of this software and associated documentation files (the "Software"), to deal
775
+ in the Software without restriction, including without limitation the rights
776
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
777
+ copies of the Software, and to permit persons to whom the Software is
778
+ furnished to do so, subject to the following conditions:
779
+
780
+ The above copyright notice and this permission notice shall be included in all
781
+ copies or substantial portions of the Software.
782
+
783
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
784
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
785
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
786
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
787
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
788
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
789
+ SOFTWARE.
790
+
791
+ ------------------
792
+ github.com/tklauser/go-sysconf v0.3.5
793
+ ------------------
794
+ BSD 3-Clause License
795
+
796
+ Copyright (c) 2018-2021, Tobias Klauser
797
+ All rights reserved.
798
+
799
+ Redistribution and use in source and binary forms, with or without
800
+ modification, are permitted provided that the following conditions are met:
801
+
802
+ * Redistributions of source code must retain the above copyright notice, this
803
+ list of conditions and the following disclaimer.
804
+
805
+ * Redistributions in binary form must reproduce the above copyright notice,
806
+ this list of conditions and the following disclaimer in the documentation
807
+ and/or other materials provided with the distribution.
808
+
809
+ * Neither the name of the copyright holder nor the names of its
810
+ contributors may be used to endorse or promote products derived from
811
+ this software without specific prior written permission.
812
+
813
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
814
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
815
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
816
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
817
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
818
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
819
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
820
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
821
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
822
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
823
+
824
+ ------------------
825
+ github.com/tklauser/numcpus v0.2.2
826
+ ------------------
827
+ Apache License
828
+ Version 2.0, January 2004
829
+ http://www.apache.org/licenses/
830
+
831
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
832
+
833
+ 1. Definitions.
834
+
835
+ "License" shall mean the terms and conditions for use, reproduction,
836
+ and distribution as defined by Sections 1 through 9 of this document.
837
+
838
+ "Licensor" shall mean the copyright owner or entity authorized by
839
+ the copyright owner that is granting the License.
840
+
841
+ "Legal Entity" shall mean the union of the acting entity and all
842
+ other entities that control, are controlled by, or are under common
843
+ control with that entity. For the purposes of this definition,
844
+ "control" means (i) the power, direct or indirect, to cause the
845
+ direction or management of such entity, whether by contract or
846
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
847
+ outstanding shares, or (iii) beneficial ownership of such entity.
848
+
849
+ "You" (or "Your") shall mean an individual or Legal Entity
850
+ exercising permissions granted by this License.
851
+
852
+ "Source" form shall mean the preferred form for making modifications,
853
+ including but not limited to software source code, documentation
854
+ source, and configuration files.
855
+
856
+ "Object" form shall mean any form resulting from mechanical
857
+ transformation or translation of a Source form, including but
858
+ not limited to compiled object code, generated documentation,
859
+ and conversions to other media types.
860
+
861
+ "Work" shall mean the work of authorship, whether in Source or
862
+ Object form, made available under the License, as indicated by a
863
+ copyright notice that is included in or attached to the work
864
+ (an example is provided in the Appendix below).
865
+
866
+ "Derivative Works" shall mean any work, whether in Source or Object
867
+ form, that is based on (or derived from) the Work and for which the
868
+ editorial revisions, annotations, elaborations, or other modifications
869
+ represent, as a whole, an original work of authorship. For the purposes
870
+ of this License, Derivative Works shall not include works that remain
871
+ separable from, or merely link (or bind by name) to the interfaces of,
872
+ the Work and Derivative Works thereof.
873
+
874
+ "Contribution" shall mean any work of authorship, including
875
+ the original version of the Work and any modifications or additions
876
+ to that Work or Derivative Works thereof, that is intentionally
877
+ submitted to Licensor for inclusion in the Work by the copyright owner
878
+ or by an individual or Legal Entity authorized to submit on behalf of
879
+ the copyright owner. For the purposes of this definition, "submitted"
880
+ means any form of electronic, verbal, or written communication sent
881
+ to the Licensor or its representatives, including but not limited to
882
+ communication on electronic mailing lists, source code control systems,
883
+ and issue tracking systems that are managed by, or on behalf of, the
884
+ Licensor for the purpose of discussing and improving the Work, but
885
+ excluding communication that is conspicuously marked or otherwise
886
+ designated in writing by the copyright owner as "Not a Contribution."
887
+
888
+ "Contributor" shall mean Licensor and any individual or Legal Entity
889
+ on behalf of whom a Contribution has been received by Licensor and
890
+ subsequently incorporated within the Work.
891
+
892
+ 2. Grant of Copyright License. Subject to the terms and conditions of
893
+ this License, each Contributor hereby grants to You a perpetual,
894
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
895
+ copyright license to reproduce, prepare Derivative Works of,
896
+ publicly display, publicly perform, sublicense, and distribute the
897
+ Work and such Derivative Works in Source or Object form.
898
+
899
+ 3. Grant of Patent License. Subject to the terms and conditions of
900
+ this License, each Contributor hereby grants to You a perpetual,
901
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
902
+ (except as stated in this section) patent license to make, have made,
903
+ use, offer to sell, sell, import, and otherwise transfer the Work,
904
+ where such license applies only to those patent claims licensable
905
+ by such Contributor that are necessarily infringed by their
906
+ Contribution(s) alone or by combination of their Contribution(s)
907
+ with the Work to which such Contribution(s) was submitted. If You
908
+ institute patent litigation against any entity (including a
909
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
910
+ or a Contribution incorporated within the Work constitutes direct
911
+ or contributory patent infringement, then any patent licenses
912
+ granted to You under this License for that Work shall terminate
913
+ as of the date such litigation is filed.
914
+
915
+ 4. Redistribution. You may reproduce and distribute copies of the
916
+ Work or Derivative Works thereof in any medium, with or without
917
+ modifications, and in Source or Object form, provided that You
918
+ meet the following conditions:
919
+
920
+ (a) You must give any other recipients of the Work or
921
+ Derivative Works a copy of this License; and
922
+
923
+ (b) You must cause any modified files to carry prominent notices
924
+ stating that You changed the files; and
925
+
926
+ (c) You must retain, in the Source form of any Derivative Works
927
+ that You distribute, all copyright, patent, trademark, and
928
+ attribution notices from the Source form of the Work,
929
+ excluding those notices that do not pertain to any part of
930
+ the Derivative Works; and
931
+
932
+ (d) If the Work includes a "NOTICE" text file as part of its
933
+ distribution, then any Derivative Works that You distribute must
934
+ include a readable copy of the attribution notices contained
935
+ within such NOTICE file, excluding those notices that do not
936
+ pertain to any part of the Derivative Works, in at least one
937
+ of the following places: within a NOTICE text file distributed
938
+ as part of the Derivative Works; within the Source form or
939
+ documentation, if provided along with the Derivative Works; or,
940
+ within a display generated by the Derivative Works, if and
941
+ wherever such third-party notices normally appear. The contents
942
+ of the NOTICE file are for informational purposes only and
943
+ do not modify the License. You may add Your own attribution
944
+ notices within Derivative Works that You distribute, alongside
945
+ or as an addendum to the NOTICE text from the Work, provided
946
+ that such additional attribution notices cannot be construed
947
+ as modifying the License.
948
+
949
+ You may add Your own copyright statement to Your modifications and
950
+ may provide additional or different license terms and conditions
951
+ for use, reproduction, or distribution of Your modifications, or
952
+ for any such Derivative Works as a whole, provided Your use,
953
+ reproduction, and distribution of the Work otherwise complies with
954
+ the conditions stated in this License.
955
+
956
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
957
+ any Contribution intentionally submitted for inclusion in the Work
958
+ by You to the Licensor shall be under the terms and conditions of
959
+ this License, without any additional terms or conditions.
960
+ Notwithstanding the above, nothing herein shall supersede or modify
961
+ the terms of any separate license agreement you may have executed
962
+ with Licensor regarding such Contributions.
963
+
964
+ 6. Trademarks. This License does not grant permission to use the trade
965
+ names, trademarks, service marks, or product names of the Licensor,
966
+ except as required for reasonable and customary use in describing the
967
+ origin of the Work and reproducing the content of the NOTICE file.
968
+
969
+ 7. Disclaimer of Warranty. Unless required by applicable law or
970
+ agreed to in writing, Licensor provides the Work (and each
971
+ Contributor provides its Contributions) on an "AS IS" BASIS,
972
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
973
+ implied, including, without limitation, any warranties or conditions
974
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
975
+ PARTICULAR PURPOSE. You are solely responsible for determining the
976
+ appropriateness of using or redistributing the Work and assume any
977
+ risks associated with Your exercise of permissions under this License.
978
+
979
+ 8. Limitation of Liability. In no event and under no legal theory,
980
+ whether in tort (including negligence), contract, or otherwise,
981
+ unless required by applicable law (such as deliberate and grossly
982
+ negligent acts) or agreed to in writing, shall any Contributor be
983
+ liable to You for damages, including any direct, indirect, special,
984
+ incidental, or consequential damages of any character arising as a
985
+ result of this License or out of the use or inability to use the
986
+ Work (including but not limited to damages for loss of goodwill,
987
+ work stoppage, computer failure or malfunction, or any and all
988
+ other commercial damages or losses), even if such Contributor
989
+ has been advised of the possibility of such damages.
990
+
991
+ 9. Accepting Warranty or Additional Liability. While redistributing
992
+ the Work or Derivative Works thereof, You may choose to offer,
993
+ and charge a fee for, acceptance of support, warranty, indemnity,
994
+ or other liability obligations and/or rights consistent with this
995
+ License. However, in accepting such obligations, You may act only
996
+ on Your own behalf and on Your sole responsibility, not on behalf
997
+ of any other Contributor, and only if You agree to indemnify,
998
+ defend, and hold each Contributor harmless for any liability
999
+ incurred by, or claims asserted against, such Contributor by reason
1000
+ of your accepting any such warranty or additional liability.
1001
+
1002
+ END OF TERMS AND CONDITIONS
1003
+
1004
+ APPENDIX: How to apply the Apache License to your work.
1005
+
1006
+ To apply the Apache License to your work, attach the following
1007
+ boilerplate notice, with the fields enclosed by brackets "{}"
1008
+ replaced with your own identifying information. (Don't include
1009
+ the brackets!) The text should be enclosed in the appropriate
1010
+ comment syntax for the file format. We also recommend that a
1011
+ file or class name and description of purpose be included on the
1012
+ same "printed page" as the copyright notice for easier
1013
+ identification within third-party archives.
1014
+
1015
+ Copyright {yyyy} Authors of Cilium
1016
+
1017
+ Licensed under the Apache License, Version 2.0 (the "License");
1018
+ you may not use this file except in compliance with the License.
1019
+ You may obtain a copy of the License at
1020
+
1021
+ http://www.apache.org/licenses/LICENSE-2.0
1022
+
1023
+ Unless required by applicable law or agreed to in writing, software
1024
+ distributed under the License is distributed on an "AS IS" BASIS,
1025
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1026
+ See the License for the specific language governing permissions and
1027
+ limitations under the License.
1028
+
1029
+
1030
+ ------------------
1031
+ github.com/zabertech/go-ethereum v1.10.4-modified-2 (fork github.com/ethereum/go-ethereum)
1032
+ ------------------
1033
+ GNU GENERAL PUBLIC LICENSE
1034
+ Version 3, 29 June 2007
1035
+
1036
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
1037
+ Everyone is permitted to copy and distribute verbatim copies
1038
+ of this license document, but changing it is not allowed.
1039
+
1040
+ Preamble
1041
+
1042
+ The GNU General Public License is a free, copyleft license for
1043
+ software and other kinds of works.
1044
+
1045
+ The licenses for most software and other practical works are designed
1046
+ to take away your freedom to share and change the works. By contrast,
1047
+ the GNU General Public License is intended to guarantee your freedom to
1048
+ share and change all versions of a program--to make sure it remains free
1049
+ software for all its users. We, the Free Software Foundation, use the
1050
+ GNU General Public License for most of our software; it applies also to
1051
+ any other work released this way by its authors. You can apply it to
1052
+ your programs, too.
1053
+
1054
+ When we speak of free software, we are referring to freedom, not
1055
+ price. Our General Public Licenses are designed to make sure that you
1056
+ have the freedom to distribute copies of free software (and charge for
1057
+ them if you wish), that you receive source code or can get it if you
1058
+ want it, that you can change the software or use pieces of it in new
1059
+ free programs, and that you know you can do these things.
1060
+
1061
+ To protect your rights, we need to prevent others from denying you
1062
+ these rights or asking you to surrender the rights. Therefore, you have
1063
+ certain responsibilities if you distribute copies of the software, or if
1064
+ you modify it: responsibilities to respect the freedom of others.
1065
+
1066
+ For example, if you distribute copies of such a program, whether
1067
+ gratis or for a fee, you must pass on to the recipients the same
1068
+ freedoms that you received. You must make sure that they, too, receive
1069
+ or can get the source code. And you must show them these terms so they
1070
+ know their rights.
1071
+
1072
+ Developers that use the GNU GPL protect your rights with two steps:
1073
+ (1) assert copyright on the software, and (2) offer you this License
1074
+ giving you legal permission to copy, distribute and/or modify it.
1075
+
1076
+ For the developers' and authors' protection, the GPL clearly explains
1077
+ that there is no warranty for this free software. For both users' and
1078
+ authors' sake, the GPL requires that modified versions be marked as
1079
+ changed, so that their problems will not be attributed erroneously to
1080
+ authors of previous versions.
1081
+
1082
+ Some devices are designed to deny users access to install or run
1083
+ modified versions of the software inside them, although the manufacturer
1084
+ can do so. This is fundamentally incompatible with the aim of
1085
+ protecting users' freedom to change the software. The systematic
1086
+ pattern of such abuse occurs in the area of products for individuals to
1087
+ use, which is precisely where it is most unacceptable. Therefore, we
1088
+ have designed this version of the GPL to prohibit the practice for those
1089
+ products. If such problems arise substantially in other domains, we
1090
+ stand ready to extend this provision to those domains in future versions
1091
+ of the GPL, as needed to protect the freedom of users.
1092
+
1093
+ Finally, every program is threatened constantly by software patents.
1094
+ States should not allow patents to restrict development and use of
1095
+ software on general-purpose computers, but in those that do, we wish to
1096
+ avoid the special danger that patents applied to a free program could
1097
+ make it effectively proprietary. To prevent this, the GPL assures that
1098
+ patents cannot be used to render the program non-free.
1099
+
1100
+ The precise terms and conditions for copying, distribution and
1101
+ modification follow.
1102
+
1103
+ TERMS AND CONDITIONS
1104
+
1105
+ 0. Definitions.
1106
+
1107
+ "This License" refers to version 3 of the GNU General Public License.
1108
+
1109
+ "Copyright" also means copyright-like laws that apply to other kinds of
1110
+ works, such as semiconductor masks.
1111
+
1112
+ "The Program" refers to any copyrightable work licensed under this
1113
+ License. Each licensee is addressed as "you". "Licensees" and
1114
+ "recipients" may be individuals or organizations.
1115
+
1116
+ To "modify" a work means to copy from or adapt all or part of the work
1117
+ in a fashion requiring copyright permission, other than the making of an
1118
+ exact copy. The resulting work is called a "modified version" of the
1119
+ earlier work or a work "based on" the earlier work.
1120
+
1121
+ A "covered work" means either the unmodified Program or a work based
1122
+ on the Program.
1123
+
1124
+ To "propagate" a work means to do anything with it that, without
1125
+ permission, would make you directly or secondarily liable for
1126
+ infringement under applicable copyright law, except executing it on a
1127
+ computer or modifying a private copy. Propagation includes copying,
1128
+ distribution (with or without modification), making available to the
1129
+ public, and in some countries other activities as well.
1130
+
1131
+ To "convey" a work means any kind of propagation that enables other
1132
+ parties to make or receive copies. Mere interaction with a user through
1133
+ a computer network, with no transfer of a copy, is not conveying.
1134
+
1135
+ An interactive user interface displays "Appropriate Legal Notices"
1136
+ to the extent that it includes a convenient and prominently visible
1137
+ feature that (1) displays an appropriate copyright notice, and (2)
1138
+ tells the user that there is no warranty for the work (except to the
1139
+ extent that warranties are provided), that licensees may convey the
1140
+ work under this License, and how to view a copy of this License. If
1141
+ the interface presents a list of user commands or options, such as a
1142
+ menu, a prominent item in the list meets this criterion.
1143
+
1144
+ 1. Source Code.
1145
+
1146
+ The "source code" for a work means the preferred form of the work
1147
+ for making modifications to it. "Object code" means any non-source
1148
+ form of a work.
1149
+
1150
+ A "Standard Interface" means an interface that either is an official
1151
+ standard defined by a recognized standards body, or, in the case of
1152
+ interfaces specified for a particular programming language, one that
1153
+ is widely used among developers working in that language.
1154
+
1155
+ The "System Libraries" of an executable work include anything, other
1156
+ than the work as a whole, that (a) is included in the normal form of
1157
+ packaging a Major Component, but which is not part of that Major
1158
+ Component, and (b) serves only to enable use of the work with that
1159
+ Major Component, or to implement a Standard Interface for which an
1160
+ implementation is available to the public in source code form. A
1161
+ "Major Component", in this context, means a major essential component
1162
+ (kernel, window system, and so on) of the specific operating system
1163
+ (if any) on which the executable work runs, or a compiler used to
1164
+ produce the work, or an object code interpreter used to run it.
1165
+
1166
+ The "Corresponding Source" for a work in object code form means all
1167
+ the source code needed to generate, install, and (for an executable
1168
+ work) run the object code and to modify the work, including scripts to
1169
+ control those activities. However, it does not include the work's
1170
+ System Libraries, or general-purpose tools or generally available free
1171
+ programs which are used unmodified in performing those activities but
1172
+ which are not part of the work. For example, Corresponding Source
1173
+ includes interface definition files associated with source files for
1174
+ the work, and the source code for shared libraries and dynamically
1175
+ linked subprograms that the work is specifically designed to require,
1176
+ such as by intimate data communication or control flow between those
1177
+ subprograms and other parts of the work.
1178
+
1179
+ The Corresponding Source need not include anything that users
1180
+ can regenerate automatically from other parts of the Corresponding
1181
+ Source.
1182
+
1183
+ The Corresponding Source for a work in source code form is that
1184
+ same work.
1185
+
1186
+ 2. Basic Permissions.
1187
+
1188
+ All rights granted under this License are granted for the term of
1189
+ copyright on the Program, and are irrevocable provided the stated
1190
+ conditions are met. This License explicitly affirms your unlimited
1191
+ permission to run the unmodified Program. The output from running a
1192
+ covered work is covered by this License only if the output, given its
1193
+ content, constitutes a covered work. This License acknowledges your
1194
+ rights of fair use or other equivalent, as provided by copyright law.
1195
+
1196
+ You may make, run and propagate covered works that you do not
1197
+ convey, without conditions so long as your license otherwise remains
1198
+ in force. You may convey covered works to others for the sole purpose
1199
+ of having them make modifications exclusively for you, or provide you
1200
+ with facilities for running those works, provided that you comply with
1201
+ the terms of this License in conveying all material for which you do
1202
+ not control copyright. Those thus making or running the covered works
1203
+ for you must do so exclusively on your behalf, under your direction
1204
+ and control, on terms that prohibit them from making any copies of
1205
+ your copyrighted material outside their relationship with you.
1206
+
1207
+ Conveying under any other circumstances is permitted solely under
1208
+ the conditions stated below. Sublicensing is not allowed; section 10
1209
+ makes it unnecessary.
1210
+
1211
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
1212
+
1213
+ No covered work shall be deemed part of an effective technological
1214
+ measure under any applicable law fulfilling obligations under article
1215
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
1216
+ similar laws prohibiting or restricting circumvention of such
1217
+ measures.
1218
+
1219
+ When you convey a covered work, you waive any legal power to forbid
1220
+ circumvention of technological measures to the extent such circumvention
1221
+ is effected by exercising rights under this License with respect to
1222
+ the covered work, and you disclaim any intention to limit operation or
1223
+ modification of the work as a means of enforcing, against the work's
1224
+ users, your or third parties' legal rights to forbid circumvention of
1225
+ technological measures.
1226
+
1227
+ 4. Conveying Verbatim Copies.
1228
+
1229
+ You may convey verbatim copies of the Program's source code as you
1230
+ receive it, in any medium, provided that you conspicuously and
1231
+ appropriately publish on each copy an appropriate copyright notice;
1232
+ keep intact all notices stating that this License and any
1233
+ non-permissive terms added in accord with section 7 apply to the code;
1234
+ keep intact all notices of the absence of any warranty; and give all
1235
+ recipients a copy of this License along with the Program.
1236
+
1237
+ You may charge any price or no price for each copy that you convey,
1238
+ and you may offer support or warranty protection for a fee.
1239
+
1240
+ 5. Conveying Modified Source Versions.
1241
+
1242
+ You may convey a work based on the Program, or the modifications to
1243
+ produce it from the Program, in the form of source code under the
1244
+ terms of section 4, provided that you also meet all of these conditions:
1245
+
1246
+ a) The work must carry prominent notices stating that you modified
1247
+ it, and giving a relevant date.
1248
+
1249
+ b) The work must carry prominent notices stating that it is
1250
+ released under this License and any conditions added under section
1251
+ 7. This requirement modifies the requirement in section 4 to
1252
+ "keep intact all notices".
1253
+
1254
+ c) You must license the entire work, as a whole, under this
1255
+ License to anyone who comes into possession of a copy. This
1256
+ License will therefore apply, along with any applicable section 7
1257
+ additional terms, to the whole of the work, and all its parts,
1258
+ regardless of how they are packaged. This License gives no
1259
+ permission to license the work in any other way, but it does not
1260
+ invalidate such permission if you have separately received it.
1261
+
1262
+ d) If the work has interactive user interfaces, each must display
1263
+ Appropriate Legal Notices; however, if the Program has interactive
1264
+ interfaces that do not display Appropriate Legal Notices, your
1265
+ work need not make them do so.
1266
+
1267
+ A compilation of a covered work with other separate and independent
1268
+ works, which are not by their nature extensions of the covered work,
1269
+ and which are not combined with it such as to form a larger program,
1270
+ in or on a volume of a storage or distribution medium, is called an
1271
+ "aggregate" if the compilation and its resulting copyright are not
1272
+ used to limit the access or legal rights of the compilation's users
1273
+ beyond what the individual works permit. Inclusion of a covered work
1274
+ in an aggregate does not cause this License to apply to the other
1275
+ parts of the aggregate.
1276
+
1277
+ 6. Conveying Non-Source Forms.
1278
+
1279
+ You may convey a covered work in object code form under the terms
1280
+ of sections 4 and 5, provided that you also convey the
1281
+ machine-readable Corresponding Source under the terms of this License,
1282
+ in one of these ways:
1283
+
1284
+ a) Convey the object code in, or embodied in, a physical product
1285
+ (including a physical distribution medium), accompanied by the
1286
+ Corresponding Source fixed on a durable physical medium
1287
+ customarily used for software interchange.
1288
+
1289
+ b) Convey the object code in, or embodied in, a physical product
1290
+ (including a physical distribution medium), accompanied by a
1291
+ written offer, valid for at least three years and valid for as
1292
+ long as you offer spare parts or customer support for that product
1293
+ model, to give anyone who possesses the object code either (1) a
1294
+ copy of the Corresponding Source for all the software in the
1295
+ product that is covered by this License, on a durable physical
1296
+ medium customarily used for software interchange, for a price no
1297
+ more than your reasonable cost of physically performing this
1298
+ conveying of source, or (2) access to copy the
1299
+ Corresponding Source from a network server at no charge.
1300
+
1301
+ c) Convey individual copies of the object code with a copy of the
1302
+ written offer to provide the Corresponding Source. This
1303
+ alternative is allowed only occasionally and noncommercially, and
1304
+ only if you received the object code with such an offer, in accord
1305
+ with subsection 6b.
1306
+
1307
+ d) Convey the object code by offering access from a designated
1308
+ place (gratis or for a charge), and offer equivalent access to the
1309
+ Corresponding Source in the same way through the same place at no
1310
+ further charge. You need not require recipients to copy the
1311
+ Corresponding Source along with the object code. If the place to
1312
+ copy the object code is a network server, the Corresponding Source
1313
+ may be on a different server (operated by you or a third party)
1314
+ that supports equivalent copying facilities, provided you maintain
1315
+ clear directions next to the object code saying where to find the
1316
+ Corresponding Source. Regardless of what server hosts the
1317
+ Corresponding Source, you remain obligated to ensure that it is
1318
+ available for as long as needed to satisfy these requirements.
1319
+
1320
+ e) Convey the object code using peer-to-peer transmission, provided
1321
+ you inform other peers where the object code and Corresponding
1322
+ Source of the work are being offered to the general public at no
1323
+ charge under subsection 6d.
1324
+
1325
+ A separable portion of the object code, whose source code is excluded
1326
+ from the Corresponding Source as a System Library, need not be
1327
+ included in conveying the object code work.
1328
+
1329
+ A "User Product" is either (1) a "consumer product", which means any
1330
+ tangible personal property which is normally used for personal, family,
1331
+ or household purposes, or (2) anything designed or sold for incorporation
1332
+ into a dwelling. In determining whether a product is a consumer product,
1333
+ doubtful cases shall be resolved in favor of coverage. For a particular
1334
+ product received by a particular user, "normally used" refers to a
1335
+ typical or common use of that class of product, regardless of the status
1336
+ of the particular user or of the way in which the particular user
1337
+ actually uses, or expects or is expected to use, the product. A product
1338
+ is a consumer product regardless of whether the product has substantial
1339
+ commercial, industrial or non-consumer uses, unless such uses represent
1340
+ the only significant mode of use of the product.
1341
+
1342
+ "Installation Information" for a User Product means any methods,
1343
+ procedures, authorization keys, or other information required to install
1344
+ and execute modified versions of a covered work in that User Product from
1345
+ a modified version of its Corresponding Source. The information must
1346
+ suffice to ensure that the continued functioning of the modified object
1347
+ code is in no case prevented or interfered with solely because
1348
+ modification has been made.
1349
+
1350
+ If you convey an object code work under this section in, or with, or
1351
+ specifically for use in, a User Product, and the conveying occurs as
1352
+ part of a transaction in which the right of possession and use of the
1353
+ User Product is transferred to the recipient in perpetuity or for a
1354
+ fixed term (regardless of how the transaction is characterized), the
1355
+ Corresponding Source conveyed under this section must be accompanied
1356
+ by the Installation Information. But this requirement does not apply
1357
+ if neither you nor any third party retains the ability to install
1358
+ modified object code on the User Product (for example, the work has
1359
+ been installed in ROM).
1360
+
1361
+ The requirement to provide Installation Information does not include a
1362
+ requirement to continue to provide support service, warranty, or updates
1363
+ for a work that has been modified or installed by the recipient, or for
1364
+ the User Product in which it has been modified or installed. Access to a
1365
+ network may be denied when the modification itself materially and
1366
+ adversely affects the operation of the network or violates the rules and
1367
+ protocols for communication across the network.
1368
+
1369
+ Corresponding Source conveyed, and Installation Information provided,
1370
+ in accord with this section must be in a format that is publicly
1371
+ documented (and with an implementation available to the public in
1372
+ source code form), and must require no special password or key for
1373
+ unpacking, reading or copying.
1374
+
1375
+ 7. Additional Terms.
1376
+
1377
+ "Additional permissions" are terms that supplement the terms of this
1378
+ License by making exceptions from one or more of its conditions.
1379
+ Additional permissions that are applicable to the entire Program shall
1380
+ be treated as though they were included in this License, to the extent
1381
+ that they are valid under applicable law. If additional permissions
1382
+ apply only to part of the Program, that part may be used separately
1383
+ under those permissions, but the entire Program remains governed by
1384
+ this License without regard to the additional permissions.
1385
+
1386
+ When you convey a copy of a covered work, you may at your option
1387
+ remove any additional permissions from that copy, or from any part of
1388
+ it. (Additional permissions may be written to require their own
1389
+ removal in certain cases when you modify the work.) You may place
1390
+ additional permissions on material, added by you to a covered work,
1391
+ for which you have or can give appropriate copyright permission.
1392
+
1393
+ Notwithstanding any other provision of this License, for material you
1394
+ add to a covered work, you may (if authorized by the copyright holders of
1395
+ that material) supplement the terms of this License with terms:
1396
+
1397
+ a) Disclaiming warranty or limiting liability differently from the
1398
+ terms of sections 15 and 16 of this License; or
1399
+
1400
+ b) Requiring preservation of specified reasonable legal notices or
1401
+ author attributions in that material or in the Appropriate Legal
1402
+ Notices displayed by works containing it; or
1403
+
1404
+ c) Prohibiting misrepresentation of the origin of that material, or
1405
+ requiring that modified versions of such material be marked in
1406
+ reasonable ways as different from the original version; or
1407
+
1408
+ d) Limiting the use for publicity purposes of names of licensors or
1409
+ authors of the material; or
1410
+
1411
+ e) Declining to grant rights under trademark law for use of some
1412
+ trade names, trademarks, or service marks; or
1413
+
1414
+ f) Requiring indemnification of licensors and authors of that
1415
+ material by anyone who conveys the material (or modified versions of
1416
+ it) with contractual assumptions of liability to the recipient, for
1417
+ any liability that these contractual assumptions directly impose on
1418
+ those licensors and authors.
1419
+
1420
+ All other non-permissive additional terms are considered "further
1421
+ restrictions" within the meaning of section 10. If the Program as you
1422
+ received it, or any part of it, contains a notice stating that it is
1423
+ governed by this License along with a term that is a further
1424
+ restriction, you may remove that term. If a license document contains
1425
+ a further restriction but permits relicensing or conveying under this
1426
+ License, you may add to a covered work material governed by the terms
1427
+ of that license document, provided that the further restriction does
1428
+ not survive such relicensing or conveying.
1429
+
1430
+ If you add terms to a covered work in accord with this section, you
1431
+ must place, in the relevant source files, a statement of the
1432
+ additional terms that apply to those files, or a notice indicating
1433
+ where to find the applicable terms.
1434
+
1435
+ Additional terms, permissive or non-permissive, may be stated in the
1436
+ form of a separately written license, or stated as exceptions;
1437
+ the above requirements apply either way.
1438
+
1439
+ 8. Termination.
1440
+
1441
+ You may not propagate or modify a covered work except as expressly
1442
+ provided under this License. Any attempt otherwise to propagate or
1443
+ modify it is void, and will automatically terminate your rights under
1444
+ this License (including any patent licenses granted under the third
1445
+ paragraph of section 11).
1446
+
1447
+ However, if you cease all violation of this License, then your
1448
+ license from a particular copyright holder is reinstated (a)
1449
+ provisionally, unless and until the copyright holder explicitly and
1450
+ finally terminates your license, and (b) permanently, if the copyright
1451
+ holder fails to notify you of the violation by some reasonable means
1452
+ prior to 60 days after the cessation.
1453
+
1454
+ Moreover, your license from a particular copyright holder is
1455
+ reinstated permanently if the copyright holder notifies you of the
1456
+ violation by some reasonable means, this is the first time you have
1457
+ received notice of violation of this License (for any work) from that
1458
+ copyright holder, and you cure the violation prior to 30 days after
1459
+ your receipt of the notice.
1460
+
1461
+ Termination of your rights under this section does not terminate the
1462
+ licenses of parties who have received copies or rights from you under
1463
+ this License. If your rights have been terminated and not permanently
1464
+ reinstated, you do not qualify to receive new licenses for the same
1465
+ material under section 10.
1466
+
1467
+ 9. Acceptance Not Required for Having Copies.
1468
+
1469
+ You are not required to accept this License in order to receive or
1470
+ run a copy of the Program. Ancillary propagation of a covered work
1471
+ occurring solely as a consequence of using peer-to-peer transmission
1472
+ to receive a copy likewise does not require acceptance. However,
1473
+ nothing other than this License grants you permission to propagate or
1474
+ modify any covered work. These actions infringe copyright if you do
1475
+ not accept this License. Therefore, by modifying or propagating a
1476
+ covered work, you indicate your acceptance of this License to do so.
1477
+
1478
+ 10. Automatic Licensing of Downstream Recipients.
1479
+
1480
+ Each time you convey a covered work, the recipient automatically
1481
+ receives a license from the original licensors, to run, modify and
1482
+ propagate that work, subject to this License. You are not responsible
1483
+ for enforcing compliance by third parties with this License.
1484
+
1485
+ An "entity transaction" is a transaction transferring control of an
1486
+ organization, or substantially all assets of one, or subdividing an
1487
+ organization, or merging organizations. If propagation of a covered
1488
+ work results from an entity transaction, each party to that
1489
+ transaction who receives a copy of the work also receives whatever
1490
+ licenses to the work the party's predecessor in interest had or could
1491
+ give under the previous paragraph, plus a right to possession of the
1492
+ Corresponding Source of the work from the predecessor in interest, if
1493
+ the predecessor has it or can get it with reasonable efforts.
1494
+
1495
+ You may not impose any further restrictions on the exercise of the
1496
+ rights granted or affirmed under this License. For example, you may
1497
+ not impose a license fee, royalty, or other charge for exercise of
1498
+ rights granted under this License, and you may not initiate litigation
1499
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
1500
+ any patent claim is infringed by making, using, selling, offering for
1501
+ sale, or importing the Program or any portion of it.
1502
+
1503
+ 11. Patents.
1504
+
1505
+ A "contributor" is a copyright holder who authorizes use under this
1506
+ License of the Program or a work on which the Program is based. The
1507
+ work thus licensed is called the contributor's "contributor version".
1508
+
1509
+ A contributor's "essential patent claims" are all patent claims
1510
+ owned or controlled by the contributor, whether already acquired or
1511
+ hereafter acquired, that would be infringed by some manner, permitted
1512
+ by this License, of making, using, or selling its contributor version,
1513
+ but do not include claims that would be infringed only as a
1514
+ consequence of further modification of the contributor version. For
1515
+ purposes of this definition, "control" includes the right to grant
1516
+ patent sublicenses in a manner consistent with the requirements of
1517
+ this License.
1518
+
1519
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
1520
+ patent license under the contributor's essential patent claims, to
1521
+ make, use, sell, offer for sale, import and otherwise run, modify and
1522
+ propagate the contents of its contributor version.
1523
+
1524
+ In the following three paragraphs, a "patent license" is any express
1525
+ agreement or commitment, however denominated, not to enforce a patent
1526
+ (such as an express permission to practice a patent or covenant not to
1527
+ sue for patent infringement). To "grant" such a patent license to a
1528
+ party means to make such an agreement or commitment not to enforce a
1529
+ patent against the party.
1530
+
1531
+ If you convey a covered work, knowingly relying on a patent license,
1532
+ and the Corresponding Source of the work is not available for anyone
1533
+ to copy, free of charge and under the terms of this License, through a
1534
+ publicly available network server or other readily accessible means,
1535
+ then you must either (1) cause the Corresponding Source to be so
1536
+ available, or (2) arrange to deprive yourself of the benefit of the
1537
+ patent license for this particular work, or (3) arrange, in a manner
1538
+ consistent with the requirements of this License, to extend the patent
1539
+ license to downstream recipients. "Knowingly relying" means you have
1540
+ actual knowledge that, but for the patent license, your conveying the
1541
+ covered work in a country, or your recipient's use of the covered work
1542
+ in a country, would infringe one or more identifiable patents in that
1543
+ country that you have reason to believe are valid.
1544
+
1545
+ If, pursuant to or in connection with a single transaction or
1546
+ arrangement, you convey, or propagate by procuring conveyance of, a
1547
+ covered work, and grant a patent license to some of the parties
1548
+ receiving the covered work authorizing them to use, propagate, modify
1549
+ or convey a specific copy of the covered work, then the patent license
1550
+ you grant is automatically extended to all recipients of the covered
1551
+ work and works based on it.
1552
+
1553
+ A patent license is "discriminatory" if it does not include within
1554
+ the scope of its coverage, prohibits the exercise of, or is
1555
+ conditioned on the non-exercise of one or more of the rights that are
1556
+ specifically granted under this License. You may not convey a covered
1557
+ work if you are a party to an arrangement with a third party that is
1558
+ in the business of distributing software, under which you make payment
1559
+ to the third party based on the extent of your activity of conveying
1560
+ the work, and under which the third party grants, to any of the
1561
+ parties who would receive the covered work from you, a discriminatory
1562
+ patent license (a) in connection with copies of the covered work
1563
+ conveyed by you (or copies made from those copies), or (b) primarily
1564
+ for and in connection with specific products or compilations that
1565
+ contain the covered work, unless you entered into that arrangement,
1566
+ or that patent license was granted, prior to 28 March 2007.
1567
+
1568
+ Nothing in this License shall be construed as excluding or limiting
1569
+ any implied license or other defenses to infringement that may
1570
+ otherwise be available to you under applicable patent law.
1571
+
1572
+ 12. No Surrender of Others' Freedom.
1573
+
1574
+ If conditions are imposed on you (whether by court order, agreement or
1575
+ otherwise) that contradict the conditions of this License, they do not
1576
+ excuse you from the conditions of this License. If you cannot convey a
1577
+ covered work so as to satisfy simultaneously your obligations under this
1578
+ License and any other pertinent obligations, then as a consequence you may
1579
+ not convey it at all. For example, if you agree to terms that obligate you
1580
+ to collect a royalty for further conveying from those to whom you convey
1581
+ the Program, the only way you could satisfy both those terms and this
1582
+ License would be to refrain entirely from conveying the Program.
1583
+
1584
+ 13. Use with the GNU Affero General Public License.
1585
+
1586
+ Notwithstanding any other provision of this License, you have
1587
+ permission to link or combine any covered work with a work licensed
1588
+ under version 3 of the GNU Affero General Public License into a single
1589
+ combined work, and to convey the resulting work. The terms of this
1590
+ License will continue to apply to the part which is the covered work,
1591
+ but the special requirements of the GNU Affero General Public License,
1592
+ section 13, concerning interaction through a network will apply to the
1593
+ combination as such.
1594
+
1595
+ 14. Revised Versions of this License.
1596
+
1597
+ The Free Software Foundation may publish revised and/or new versions of
1598
+ the GNU General Public License from time to time. Such new versions will
1599
+ be similar in spirit to the present version, but may differ in detail to
1600
+ address new problems or concerns.
1601
+
1602
+ Each version is given a distinguishing version number. If the
1603
+ Program specifies that a certain numbered version of the GNU General
1604
+ Public License "or any later version" applies to it, you have the
1605
+ option of following the terms and conditions either of that numbered
1606
+ version or of any later version published by the Free Software
1607
+ Foundation. If the Program does not specify a version number of the
1608
+ GNU General Public License, you may choose any version ever published
1609
+ by the Free Software Foundation.
1610
+
1611
+ If the Program specifies that a proxy can decide which future
1612
+ versions of the GNU General Public License can be used, that proxy's
1613
+ public statement of acceptance of a version permanently authorizes you
1614
+ to choose that version for the Program.
1615
+
1616
+ Later license versions may give you additional or different
1617
+ permissions. However, no additional obligations are imposed on any
1618
+ author or copyright holder as a result of your choosing to follow a
1619
+ later version.
1620
+
1621
+ 15. Disclaimer of Warranty.
1622
+
1623
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
1624
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
1625
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
1626
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
1627
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1628
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
1629
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
1630
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
1631
+
1632
+ 16. Limitation of Liability.
1633
+
1634
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
1635
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
1636
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
1637
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
1638
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
1639
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
1640
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
1641
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
1642
+ SUCH DAMAGES.
1643
+
1644
+ 17. Interpretation of Sections 15 and 16.
1645
+
1646
+ If the disclaimer of warranty and limitation of liability provided
1647
+ above cannot be given local legal effect according to their terms,
1648
+ reviewing courts shall apply local law that most closely approximates
1649
+ an absolute waiver of all civil liability in connection with the
1650
+ Program, unless a warranty or assumption of liability accompanies a
1651
+ copy of the Program in return for a fee.
1652
+
1653
+ END OF TERMS AND CONDITIONS
1654
+
1655
+ How to Apply These Terms to Your New Programs
1656
+
1657
+ If you develop a new program, and you want it to be of the greatest
1658
+ possible use to the public, the best way to achieve this is to make it
1659
+ free software which everyone can redistribute and change under these terms.
1660
+
1661
+ To do so, attach the following notices to the program. It is safest
1662
+ to attach them to the start of each source file to most effectively
1663
+ state the exclusion of warranty; and each file should have at least
1664
+ the "copyright" line and a pointer to where the full notice is found.
1665
+
1666
+ <one line to give the program's name and a brief idea of what it does.>
1667
+ Copyright (C) <year> <name of author>
1668
+
1669
+ This program is free software: you can redistribute it and/or modify
1670
+ it under the terms of the GNU General Public License as published by
1671
+ the Free Software Foundation, either version 3 of the License, or
1672
+ (at your option) any later version.
1673
+
1674
+ This program is distributed in the hope that it will be useful,
1675
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
1676
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1677
+ GNU General Public License for more details.
1678
+
1679
+ You should have received a copy of the GNU General Public License
1680
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
1681
+
1682
+ Also add information on how to contact you by electronic and paper mail.
1683
+
1684
+ If the program does terminal interaction, make it output a short
1685
+ notice like this when it starts in an interactive mode:
1686
+
1687
+ <program> Copyright (C) <year> <name of author>
1688
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
1689
+ This is free software, and you are welcome to redistribute it
1690
+ under certain conditions; type `show c' for details.
1691
+
1692
+ The hypothetical commands `show w' and `show c' should show the appropriate
1693
+ parts of the General Public License. Of course, your program's commands
1694
+ might be different; for a GUI interface, you would use an "about box".
1695
+
1696
+ You should also get your employer (if you work as a programmer) or school,
1697
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
1698
+ For more information on this, and how to apply and follow the GNU GPL, see
1699
+ <https://www.gnu.org/licenses/>.
1700
+
1701
+ The GNU General Public License does not permit incorporating your program
1702
+ into proprietary programs. If your program is a subroutine library, you
1703
+ may consider it more useful to permit linking proprietary applications with
1704
+ the library. If this is what you want to do, use the GNU Lesser General
1705
+ Public License instead of this License. But first, please read
1706
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
1707
+
1708
+ ------------------
1709
+ github.com/zabertech/go-serial v0.0.0-20210201195853-2428148c5139 (fork github.com/bugst/go-serial)
1710
+ ------------------
1711
+
1712
+ Copyright (c) 2014-2016, Cristian Maglie.
1713
+ All rights reserved.
1714
+
1715
+ Redistribution and use in source and binary forms, with or without
1716
+ modification, are permitted provided that the following conditions
1717
+ are met:
1718
+
1719
+ 1. Redistributions of source code must retain the above copyright
1720
+ notice, this list of conditions and the following disclaimer.
1721
+
1722
+ 2. Redistributions in binary form must reproduce the above copyright
1723
+ notice, this list of conditions and the following disclaimer in
1724
+ the documentation and/or other materials provided with the
1725
+ distribution.
1726
+
1727
+ 3. Neither the name of the copyright holder nor the names of its
1728
+ contributors may be used to endorse or promote products derived
1729
+ from this software without specific prior written permission.
1730
+
1731
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1732
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1733
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
1734
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
1735
+ COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
1736
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
1737
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1738
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1739
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1740
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
1741
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1742
+ POSSIBILITY OF SUCH DAMAGE.
1743
+
1744
+
1745
+ ------------------
1746
+ golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
1747
+ ------------------
1748
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1749
+
1750
+ Redistribution and use in source and binary forms, with or without
1751
+ modification, are permitted provided that the following conditions are
1752
+ met:
1753
+
1754
+ * Redistributions of source code must retain the above copyright
1755
+ notice, this list of conditions and the following disclaimer.
1756
+ * Redistributions in binary form must reproduce the above
1757
+ copyright notice, this list of conditions and the following disclaimer
1758
+ in the documentation and/or other materials provided with the
1759
+ distribution.
1760
+ * Neither the name of Google Inc. nor the names of its
1761
+ contributors may be used to endorse or promote products derived from
1762
+ this software without specific prior written permission.
1763
+
1764
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1765
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1766
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1767
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1768
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1769
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1770
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1771
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1772
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1773
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1774
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1775
+
1776
+ ------------------
1777
+ golang.org/x/image v0.0.0-20190802002840-cff245a6509b
1778
+ ------------------
1779
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1780
+
1781
+ Redistribution and use in source and binary forms, with or without
1782
+ modification, are permitted provided that the following conditions are
1783
+ met:
1784
+
1785
+ * Redistributions of source code must retain the above copyright
1786
+ notice, this list of conditions and the following disclaimer.
1787
+ * Redistributions in binary form must reproduce the above
1788
+ copyright notice, this list of conditions and the following disclaimer
1789
+ in the documentation and/or other materials provided with the
1790
+ distribution.
1791
+ * Neither the name of Google Inc. nor the names of its
1792
+ contributors may be used to endorse or promote products derived from
1793
+ this software without specific prior written permission.
1794
+
1795
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1796
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1797
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1798
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1799
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1800
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1801
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1802
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1803
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1804
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1805
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1806
+
1807
+ ------------------
1808
+ golang.org/x/mod v0.4.2
1809
+ ------------------
1810
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1811
+
1812
+ Redistribution and use in source and binary forms, with or without
1813
+ modification, are permitted provided that the following conditions are
1814
+ met:
1815
+
1816
+ * Redistributions of source code must retain the above copyright
1817
+ notice, this list of conditions and the following disclaimer.
1818
+ * Redistributions in binary form must reproduce the above
1819
+ copyright notice, this list of conditions and the following disclaimer
1820
+ in the documentation and/or other materials provided with the
1821
+ distribution.
1822
+ * Neither the name of Google Inc. nor the names of its
1823
+ contributors may be used to endorse or promote products derived from
1824
+ this software without specific prior written permission.
1825
+
1826
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1827
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1828
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1829
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1830
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1831
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1832
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1833
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1834
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1835
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1836
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1837
+
1838
+ ------------------
1839
+ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
1840
+ ------------------
1841
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1842
+
1843
+ Redistribution and use in source and binary forms, with or without
1844
+ modification, are permitted provided that the following conditions are
1845
+ met:
1846
+
1847
+ * Redistributions of source code must retain the above copyright
1848
+ notice, this list of conditions and the following disclaimer.
1849
+ * Redistributions in binary form must reproduce the above
1850
+ copyright notice, this list of conditions and the following disclaimer
1851
+ in the documentation and/or other materials provided with the
1852
+ distribution.
1853
+ * Neither the name of Google Inc. nor the names of its
1854
+ contributors may be used to endorse or promote products derived from
1855
+ this software without specific prior written permission.
1856
+
1857
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1858
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1859
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1860
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1861
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1862
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1863
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1864
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1865
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1866
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1867
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1868
+
1869
+ ------------------
1870
+ golang.org/x/sys v0.0.0-20210510120138-977fb7262007
1871
+ ------------------
1872
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1873
+
1874
+ Redistribution and use in source and binary forms, with or without
1875
+ modification, are permitted provided that the following conditions are
1876
+ met:
1877
+
1878
+ * Redistributions of source code must retain the above copyright
1879
+ notice, this list of conditions and the following disclaimer.
1880
+ * Redistributions in binary form must reproduce the above
1881
+ copyright notice, this list of conditions and the following disclaimer
1882
+ in the documentation and/or other materials provided with the
1883
+ distribution.
1884
+ * Neither the name of Google Inc. nor the names of its
1885
+ contributors may be used to endorse or promote products derived from
1886
+ this software without specific prior written permission.
1887
+
1888
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1889
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1890
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1891
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1892
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1893
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1894
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1895
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1896
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1897
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1898
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1899
+
1900
+ ------------------
1901
+ golang.org/x/tools v0.1.2
1902
+ ------------------
1903
+ Copyright (c) 2009 The Go Authors. All rights reserved.
1904
+
1905
+ Redistribution and use in source and binary forms, with or without
1906
+ modification, are permitted provided that the following conditions are
1907
+ met:
1908
+
1909
+ * Redistributions of source code must retain the above copyright
1910
+ notice, this list of conditions and the following disclaimer.
1911
+ * Redistributions in binary form must reproduce the above
1912
+ copyright notice, this list of conditions and the following disclaimer
1913
+ in the documentation and/or other materials provided with the
1914
+ distribution.
1915
+ * Neither the name of Google Inc. nor the names of its
1916
+ contributors may be used to endorse or promote products derived from
1917
+ this software without specific prior written permission.
1918
+
1919
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1920
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1921
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1922
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1923
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1924
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1925
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1926
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1927
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1928
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1929
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1930
+
1931
+ ------------------
1932
+ golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
1933
+ ------------------
1934
+ Copyright (c) 2019 The Go Authors. All rights reserved.
1935
+
1936
+ Redistribution and use in source and binary forms, with or without
1937
+ modification, are permitted provided that the following conditions are
1938
+ met:
1939
+
1940
+ * Redistributions of source code must retain the above copyright
1941
+ notice, this list of conditions and the following disclaimer.
1942
+ * Redistributions in binary form must reproduce the above
1943
+ copyright notice, this list of conditions and the following disclaimer
1944
+ in the documentation and/or other materials provided with the
1945
+ distribution.
1946
+ * Neither the name of Google Inc. nor the names of its
1947
+ contributors may be used to endorse or promote products derived from
1948
+ this software without specific prior written permission.
1949
+
1950
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1951
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1952
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1953
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1954
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1955
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1956
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1957
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1958
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1959
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1960
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1961
+
1962
+ ------------------
1963
+ google.golang.org/protobuf v1.28.0
1964
+ ------------------
1965
+ Copyright (c) 2018 The Go Authors. All rights reserved.
1966
+
1967
+ Redistribution and use in source and binary forms, with or without
1968
+ modification, are permitted provided that the following conditions are
1969
+ met:
1970
+
1971
+ * Redistributions of source code must retain the above copyright
1972
+ notice, this list of conditions and the following disclaimer.
1973
+ * Redistributions in binary form must reproduce the above
1974
+ copyright notice, this list of conditions and the following disclaimer
1975
+ in the documentation and/or other materials provided with the
1976
+ distribution.
1977
+ * Neither the name of Google Inc. nor the names of its
1978
+ contributors may be used to endorse or promote products derived from
1979
+ this software without specific prior written permission.
1980
+
1981
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1982
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1983
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1984
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1985
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1986
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1987
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1988
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1989
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1990
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1991
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1992
+
1993
+ ------------------
1994
+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
1995
+ ------------------
1996
+ Gocheck - A rich testing framework for Go
1997
+
1998
+ Copyright (c) 2010-2013 Gustavo Niemeyer <gustavo@niemeyer.net>
1999
+
2000
+ All rights reserved.
2001
+
2002
+ Redistribution and use in source and binary forms, with or without
2003
+ modification, are permitted provided that the following conditions are met:
2004
+
2005
+ 1. Redistributions of source code must retain the above copyright notice, this
2006
+ list of conditions and the following disclaimer.
2007
+ 2. Redistributions in binary form must reproduce the above copyright notice,
2008
+ this list of conditions and the following disclaimer in the documentation
2009
+ and/or other materials provided with the distribution.
2010
+
2011
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2012
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2013
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2014
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
2015
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2016
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2017
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
2018
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2019
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2020
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2021
+
2022
+ ------------------
2023
+ gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce
2024
+ ------------------
2025
+ The MIT License (MIT)
2026
+ Copyright (c) 2013 npipe authors
2027
+
2028
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2029
+
2030
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2031
+
2032
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2033
+ ------------------
2034
+ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
2035
+ ------------------
2036
+
2037
+ This project is covered by two different licenses: MIT and Apache.
2038
+
2039
+ #### MIT License ####
2040
+
2041
+ The following files were ported to Go from C files of libyaml, and thus
2042
+ are still covered by their original MIT license, with the additional
2043
+ copyright staring in 2011 when the project was ported over:
2044
+
2045
+ apic.go emitterc.go parserc.go readerc.go scannerc.go
2046
+ writerc.go yamlh.go yamlprivateh.go
2047
+
2048
+ Copyright (c) 2006-2010 Kirill Simonov
2049
+ Copyright (c) 2006-2011 Kirill Simonov
2050
+
2051
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
2052
+ this software and associated documentation files (the "Software"), to deal in
2053
+ the Software without restriction, including without limitation the rights to
2054
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
2055
+ of the Software, and to permit persons to whom the Software is furnished to do
2056
+ so, subject to the following conditions:
2057
+
2058
+ The above copyright notice and this permission notice shall be included in all
2059
+ copies or substantial portions of the Software.
2060
+
2061
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2062
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2063
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2064
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2065
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2066
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2067
+ SOFTWARE.
2068
+
2069
+ ### Apache License ###
2070
+
2071
+ All the remaining project files are covered by the Apache license:
2072
+
2073
+ Copyright (c) 2011-2019 Canonical Ltd
2074
+
2075
+ Licensed under the Apache License, Version 2.0 (the "License");
2076
+ you may not use this file except in compliance with the License.
2077
+ You may obtain a copy of the License at
2078
+
2079
+ http://www.apache.org/licenses/LICENSE-2.0
2080
+
2081
+ Unless required by applicable law or agreed to in writing, software
2082
+ distributed under the License is distributed on an "AS IS" BASIS,
2083
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2084
+ See the License for the specific language governing permissions and
2085
+ limitations under the License.
2086
+
2087
+ ------------------
2088
+ gotest.tools v2.2.0+incompatible
2089
+ ------------------
2090
+ Copyright 2018 gotest.tools authors
2091
+
2092
+ Licensed under the Apache License, Version 2.0 (the "License");
2093
+ you may not use this file except in compliance with the License.
2094
+ You may obtain a copy of the License at
2095
+
2096
+ http://www.apache.org/licenses/LICENSE-2.0
2097
+
2098
+ Unless required by applicable law or agreed to in writing, software
2099
+ distributed under the License is distributed on an "AS IS" BASIS,
2100
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2101
+ See the License for the specific language governing permissions and
2102
+ limitations under the License.
2103
+
2104
+ ------------------
2105
+ gotest.tools/v3 v3.0.2
2106
+ ------------------
2107
+ Copyright 2018 gotest.tools authors
2108
+
2109
+ Licensed under the Apache License, Version 2.0 (the "License");
2110
+ you may not use this file except in compliance with the License.
2111
+ You may obtain a copy of the License at
2112
+
2113
+ http://www.apache.org/licenses/LICENSE-2.0
2114
+
2115
+ Unless required by applicable law or agreed to in writing, software
2116
+ distributed under the License is distributed on an "AS IS" BASIS,
2117
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2118
+ See the License for the specific language governing permissions and
2119
+ limitations under the License.